-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"private": true,
"name": "hotcake",
"version": "0.0.1",
"author": "Leonard Thieu",
"scripts": {
"postinstall": "cd vscode && npm install && cd ..",
"vscode:prepublish": "webpack --mode production",
"build": "webpack --mode none && js-yaml vscode/syntaxes/monkeyx.tmLanguage.yaml > vscode/syntaxes/monkeyx.tmLanguage.json",
"build:test": "tsc",
"watch": "webpack --mode none --watch",
"watch:test": "tsc --watch",
"clean": "node scripts/clean.js",
"test": "mocha --require source-map-support/register \"./tests/!(MonkeyTests)*.js\"",
"test:monkey": "mocha --require source-map-support/register \"./tests/MonkeyTests.js\"",
"test:preprocessorTokenizer": "mocha --require source-map-support/register \"./tests/PreprocessorTokenizerTests.js\"",
"test:preprocessorParser": "mocha --require source-map-support/register \"./tests/PreprocessorParserTests.js\"",
"test:tokenizer": "mocha --require source-map-support/register \"./tests/TokenizerTests.js\"",
"test:parser": "mocha --require source-map-support/register \"./tests/ParserTests.js\"",
"test:binder": "mocha --require source-map-support/register \"./tests/BinderTests.js\"",
"coverage": "nyc mocha --require source-map-support/register \"./tests/!(MonkeyTests)*.js\""
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/glob": "5.0.35",
"@types/mkdirp": "0.5.2",
"@types/mocha": "5.2.5",
"@types/node": "10.5.2",
"chai": "4.1.2",
"glob": "7.1.2",
"js-yaml": "3.13.1",
"mkdirp": "0.5.1",
"mocha": "5.2.0",
"natural-orderby": "2.0.3",
"nyc": "14.1.1",
"source-map-support": "0.5.9",
"ts-loader": "6.0.4",
"typescript": "3.4.5",
"webpack": "4.35.0",
"webpack-cli": "3.3.5"
}
}