-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "@midwayjs/mwcc",
"version": "0.7.0",
"description": "Midway Compiler Collection",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"lint": "mwts check",
"lint:fix": "mwts fix",
"build": "pegjs src/tsquery/parser.pegjs && tsc -p .",
"test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"allowJs\":false}' mocha -r ts-node/register -t 1000000 'test/**/*.test.ts'",
"cov": "cross-env TS_NODE_COMPILER_OPTIONS='{\"allowJs\":false}' nyc --reporter text --reporter lcov mocha -r ts-node/register -t 1000000 'test/**/*.test.ts'"
},
"keywords": [
"midway",
"compiler",
"collection"
],
"files": [
"bin",
"dist",
"script",
"register.js"
],
"license": "MIT",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"cross-env": "^7.0.3",
"globby": "^11.0.0",
"mocha": "^7.1.1",
"mwts": "^1.1.2",
"nyc": "^15.0.0",
"pegjs": "^0.10.0",
"ts-node": "^10.0.0"
},
"dependencies": {
"source-map": "^0.7.3",
"source-map-support": "^0.5.16",
"typescript": "~4.6.0"
},
"engines": {
"node": "^8.10.0 || >=10.0.0"
},
"repository": {
"type": "git",
"url": "http://github.com/midwayjs/mwcc.git"
}
}