-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "arser",
"version": "1.0.0-alpha",
"description": "A type-safe NodeJS Commandline Parser written in Typescript.",
"main": "dist/index.js",
"scripts": {
"run": "ts-node index.ts",
"build": "npm-run-all clean tsc",
"builde2e": "tsc --project ./test/tsconfig.json",
"clean": "rimraf dist test/dist",
"precover": "rimraf ./coverage/*",
"cover": "nyc --all npm run unittest",
"pree2e": "npm-run-all clean builde2e",
"e2e": "alsatian --tap test/dist/test/e2e/*.e2e.js",
"report_coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "npm-run-all unittest e2e",
"tsc": "tsc -p tsconfig.json",
"ts-node": "ts-node",
"unittest": "ts-node --no-cache --project tsconfig.json test/runner.ts",
"taptest": "ts-node --tap src/spec-lib/runner.ts",
"prepublishOnly": "npm-run-all build"
},
"author": "",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "^10.10.3",
"alsatian": "^2.3.0",
"alsatian-fluent-assertions": "^1.0.0-beta.5",
"copyfiles": "^2.1.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"typescript": "^3.0.3"
},
"nyc": {
"include": [
"src/**"
],
"extension": [
".ts"
],
"exclude": [
"typings",
"**/*.d.ts",
"**/*.test.ts",
"**/*.spec.ts"
],
"reporter": [
"json",
"html"
]
}
}