-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 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
{
"name": "installation",
"version": "0.2.18",
"description": "An installation template tool",
"keywords": [
"project generator"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "tsc",
"test": "jest",
"commit": "yarn git-cz"
},
"dependencies": {
"chalk": "3.0.0",
"commander": "4.1.0",
"cross-spawn": "7.0.1",
"fs-extra": "8.1.0",
"hyperquest": "2.1.3",
"inquirer": "7.0.4",
"semver": "6.3.0",
"tar-pack": "3.4.1",
"tmp": "0.1.0",
"validate-npm-package-name": "3.0.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^24",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.30.0",
"commitizen": "^3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^24",
"prettier": "^1",
"ts-jest": "^24",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"preset": "ts-jest"
}
}