-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "cli-argument-parser",
"version": "0.0.8",
"description": "A package containing relevant CLI actions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register",
"unit-tests": "npm run test tests/unit-test.ts -- --x=10",
"configuration-unit-tests": "npm run test tests/unit-test.ts -- ---x=10 --cli-prefix=---",
"pre-deploy": "npm run unit-tests && npm run configuration-unit-tests && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danitseitlin/cli-argument-parser.git"
},
"author": "Dani Tseitlin",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/danitseitlin/cli-argument-parser/issues"
},
"homepage": "https://github.com/danitseitlin/cli-argument-parser#readme",
"dependencies": {
"dotenv": "16.4.5",
"file-exists": "5.0.1"
},
"devDependencies": {
"@types/chai": "4.3.4",
"@types/file-exists": "5.0.0",
"@types/mocha": "10.0.8",
"@types/node": "16.11.6",
"chai": "4.3.7",
"mocha": "10.7.3",
"ts-node": "10.9.2",
"typescript": "4.6.3"
}
}