-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "vneva",
"version": "0.0.2",
"engines": {
"node": ">=12.13.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/jameswilddev/vneva"
},
"license": "MIT",
"devDependencies": {
"@types/jasmine": "3.5.10",
"@types/node": "13.13.5",
"@typescript-eslint/eslint-plugin": "2.31.0",
"@typescript-eslint/parser": "2.31.0",
"del-cli": "3.0.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"jasmine": "3.5.0",
"npm-run-all": "4.1.5",
"nyc": "15.0.1",
"prettier": "2.0.5",
"typescript": "3.8.3"
},
"scripts": {
"buildClean": "del-cli \"**/*.js\" \"**/*.d.ts\" \"!**/node_modules/**/*\"",
"buildTypeScript": "tsc",
"buildJasmineUnit": "jasmine --config=unit.jasmine.json",
"buildNyc": "nyc --check-coverage --all --exclude \"**/*-unit.*\" --exclude \"build/**/*\" --exclude \"publish/**/*\" --lines 100 --functions 100 --branches 100 --statements 100 npm run-script buildJasmineUnit",
"test": "npm-run-all buildClean buildTypeScript buildNyc",
"lint": "eslint \"**/*.ts\""
},
"files": [
"**/*.js",
"**/*.d.ts",
"!**/*-unit.js",
"!**/*-unit.d.ts"
]
}