-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "node-command-alias",
"version": "4.1.2",
"description": "Node cross platform command alias",
"keywords": [
"alias",
"cli",
"cmd",
"command",
"shell",
"terminal"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"nca": "./bin/nca"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npx --verbose tsc",
"test": "npm run build && npm run test:unit && npm run test:integration",
"test:mocha:config": "mocha -t 60000 --recursive --require ts-node/register",
"test:unit": "npm run test:mocha:config -- \"test/unit/**/*.test.ts\"",
"test:integration": "npm run test:mocha:config -- \"test/integration/**/*.test.ts\"",
"coverage": "node .github/script/generate-coverage.mjs",
"doc": "node .github/script/generate-typedoc.mjs",
"lint": "eslint \"src/**\"",
"preinstall": "node script/setup.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gturi/nca.git"
},
"author": "Giacomo Venturini (https://github.com/gturi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gturi/nca/issues"
},
"homepage": "https://github.com/gturi/nca#readme",
"dependencies": {
"iterator-helper": "^1.3.4",
"js-yaml": "^4.1.0",
"shelljs": "^0.8.5",
"walkdir": "^0.4.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/jest": "^29.5.1",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/shelljs": "^0.8.11",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.8",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/*",
"dist/**/*.js",
"package.json",
"script/*.mjs",
"LICENSE",
"README.md"
]
}