-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.18 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
{
"name": "c",
"version": "1.0.0",
"description": "easy cli scripts",
"main": "src/index.ts",
"author": "catc",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.3.0",
"execa": "5.1.1",
"hygen": "^6.2.7",
"lodash": "^4.17.21",
"omelette": "^0.4.17",
"ts-node": "^10.8.2"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.3",
"@types/omelette": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"jest-watch-typeahead": "^2.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"diagnostics": {
"exclude": [
"**"
]
}
}
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}