-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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
{
"name": "wo-tools",
"version": "1.0.0",
"description": "自己平时开发时的辅助命令行工具",
"main": "dist/src/index.js",
"bin": {
"wo": "dist/bin/wo.js"
},
"scripts": {
"test": "jest --verbose",
"build": "rm -rf dist && tsc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/yargs": "^16.0.0",
"coffee": "^5.4.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"dependencies": {
"chalk": "^4.1.0",
"commitizen": "^4.2.3",
"inquirer": "^7.3.3",
"shelljs": "^0.8.4",
"word-wrap": "^1.2.3",
"yargs": "^16.2.0"
},
"jest": {
"rootDir": "tests",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node"
}
}