-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.51 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
{
"name": "@endless-trash/build",
"description": "This is the build tool for Endless Trash.",
"version": "0.0.0",
"engines": {
"node": ">=10.19.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/jameswilddev/endless-trash"
},
"license": "MIT",
"devDependencies": {
"@types/jasmine": "3.7.0",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"del-cli": "3.0.1",
"eslint": "7.25.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.4.0",
"jasmine": "3.7.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.2.1",
"typescript": "4.1.2"
},
"scripts": {
"buildClean": "del-cli \"**/*.js\" \"**/*.d.ts\" \"!**/node_modules/**/*\"",
"buildLint": "eslint \"**/*.ts\"",
"buildLintFix": "eslint --fix \"**/*.ts\"",
"buildToolsTypeScript": "tsc --project tools.tsconfig.json",
"buildToolsRun": "node build",
"buildTypeScript": "tsc --project packages.tsconfig.json",
"buildNyc": "nyc --check-coverage --all --exclude \"**/*.ts\" --exclude \"**/*.d.ts\" --exclude \"**/unit.*\" --exclude \"build/**/*\" --exclude \"publish/**/*\" --lines 100 --functions 100 --branches 100 --statements 100 npm run-script buildJasmine",
"buildJasmine": "jasmine --config=jasmine.json",
"buildToolsPublish": "node publish",
"test": "npm-run-all buildClean buildLintFix buildToolsTypeScript buildToolsRun buildTypeScript buildNyc"
},
"sideEffects": false
}