-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "@axiosleo/cli-tool",
"version": "1.6.6",
"description": "Design for quickly developing CLI applications using Node.js.",
"keywords": [
"cli",
"tool",
"nodejs",
"develop",
"kit",
"command",
"workflow",
"locales",
"debug"
],
"author": "AxiosLeo",
"types": "index.d.ts",
"directories": {
"lib": "src"
},
"bin": {
"cli-tool": "./bin/cli-tool.js"
},
"scripts": {
"lint": "tsc ./index.d.ts && eslint --fix src/ tests/",
"test": "mocha --reporter spec --timeout 3000 tests/*.tests.js",
"test-cov": "nyc -r=lcov -r=html -r=text -r=json mocha -t 10000 -R spec tests/*.tests.js",
"test-one": "mocha --reporter spec --timeout 3000",
"ci": "npm run lint && npm run test-cov",
"clear": "rm -rf ./nyc_output ./coverage ./node_modules/ ./package-lock.json ./pnpm-lock.yaml"
},
"license": "MIT",
"dependencies": {
"big.js": "^6.2.1",
"clone-deep": "^4.0.1",
"colors": "1.4.0",
"enquirer": "^2.4.1",
"lcid": "~4.0.1",
"minimist": "^1.2.8",
"moment": "^2.30.1"
},
"repository": {
"type": "git",
"url": "https://github.com/AxiosLeo/node-cli"
},
"devDependencies": {
"@types/node": "18.14.2",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"eslint": "8.35.0",
"expect.js": "0.3.1",
"has-flag": "5.0.1",
"mm": "3.2.1",
"mocha": "10.2.0",
"mocha-sinon": "2.1.2",
"nyc": "15.1.0",
"sinon": "16.1.3",
"typescript": "4.9.5"
}
}