-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.74 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
73
74
75
76
77
{
"name": "generator-node-cli-commander",
"version": "0.0.5",
"description": "Node command line application generator using commander.js",
"homepage": "https://github.com/clarketm/generator-node-cli-commander.git",
"author": {
"name": "Travis Clarke",
"email": "travis.m.clarke@gmail.com",
"url": "https://www.travismclarke.com/"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"commander",
"commanderjs",
"command-line-tool",
"cli",
"command-line",
"command line",
"cl",
"terminal",
"node",
"nodejs"
],
"devDependencies": {
"@types/jest": "^22.2.3",
"codecov": "^3.0.2",
"eslint": "^4.19.1",
"jest": "^22.0.6",
"lint-staged": "^6.1.1",
"nsp": "^2.8.0",
"prettier": "^1.11.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"husky": "^1.0.0-rc.8",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"prepublishOnly": "nsp check && yarn lint && yarn prettier && yarn test && yarn diff",
"lint": "eslint --fix .",
"prettier": "prettier --write './**/*.{js,json,css,md}'",
"diff": "sh ./diff.sh",
"test:cov": "jest --coverage",
"test:cov:upload": "yarn test:cov && codecov",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/clarketm/generator-node-cli-commander.git"
},
"license": "MIT"
}