-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "tdd-cli",
"version": "0.0.6",
"description": "tdd工具",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "rollup -c",
"build": "rimraf lib && rollup -c",
"demo": "node lib/index.js"
},
"keywords": [
"tdd",
"CLI"
],
"bin": {
"tdd": "bin/tdd"
},
"author": "bear-w",
"license": "ISC",
"dependencies": {
"@babel/generator": "^7.18.12",
"@babel/parser": "^7.18.11",
"@babel/traverse": "^7.18.11",
"chalk": "4.1.2",
"clear": "^0.1.0",
"commander": "^9.4.0",
"copy-paste": "^1.3.0",
"figlet": "^1.5.2",
"finalhandler": "^1.2.0",
"inquirer": "^9.1.0",
"open": "^8.4.0",
"os": "^0.1.2",
"portfinder": "^1.0.29",
"rimraf": "^3.0.2",
"serve-index": "^1.9.1",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup": "^2.77.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.7.4"
}
}