-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.62 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ptjs-cli",
"version": "1.1.0",
"description": "A tool for quickly creating projects based on templates",
"main": "lib/index.js",
"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint cmd/. lib/. --config .eslintrc.json",
"mocha": "mocha test/ --recursive --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/bestjss/ptjs-cli.git"
},
"keywords": [
"Project",
"Template",
"Gitlib",
"Github",
"Cli",
"Clone",
"Copy"
],
"author": {
"name": "JS",
"email": "[email protected]",
"url": "https://www.bestjss.com"
},
"bugs": {
"url": "https://github.com/bestjss/ptjs-cli/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bin": {
"pt": "bin/ptjs-cli.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": ""
}
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.19.0",
"compare-versions": "^3.4.0",
"crypto-random-string": "^1.0.0",
"deepmerge": "^3.2.0",
"figlet": "^1.2.1",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.2",
"package-json": "^6.0.0",
"read-yaml": "^1.1.0",
"simple-git": "^1.107.0",
"split-string": "^6.0.0",
"table": "^5.2.3",
"write-yaml": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"chai": "^4.2.0",
"eslint": "^5.13.0",
"husky": "^1.3.1",
"mocha": "^6.0.0"
},
"engines": {
"node": ">= 9.11.2",
"npm": ">= 5.6.0"
}
}