-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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": "nustack",
"version": "1.0.0",
"description": "",
"main": "bin/index.js",
"scripts": {
"lintTests": "npm run clean && tslint test/**/*.spec.ts",
"lint": "npm run clean && tslint -p tsconfig.json",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test": "npm run clean && mocha --recursive --extension ts -r ts-node/register test/",
"run": "npm run build && node bin/index.js",
"build": "npm run clean && node_modules/typescript/bin/tsc",
"clean": "rm -rf bin/ coverage/",
"e2e": "npm run build && node scripts/e2e_test.js && find ./examples -regextype egrep -regex '^.*examples/[^.]*(.(o|asm))?$' -type f -delete"
},
"author": "",
"license": "ISC",
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"test/**/*",
"scripts/**/*"
],
"reporter": [
"html",
"text"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"ts-node": "^8.1.0",
"tslint": "^5.15.0",
"typescript": "3.2.2"
},
"dependencies": {
"@types/args": "^3.0.0",
"@types/node": "^11.13.4",
"args": "^5.0.1"
}
}