-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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": "poketask",
"version": "0.5.1",
"description": "Create a .gitignore with a one-line command.",
"bin": {
"poketask": "./lib/poketask.js"
},
"scripts": {
"install": "run-s remove clone:git clone:lic",
"remove": "rimraf gitignore choosealicense.com",
"clone:git": "git clone https://github.com/github/gitignore.git",
"clone:lic": "git clone https://github.com/github/choosealicense.com.git",
"lint:init": "eslint --init",
"commit": "git cz"
},
"repository": {
"type": "git",
"url": "https://github.com/drihu/poketask.git"
},
"keywords": [
"readme",
"license",
"gitignore",
"gitattributes",
"editorconfig"
],
"author": "Ricardo Huamani <ricardohuamanip@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.3",
"ejs": "^2.7.2",
"inquirer": "^5.2.0"
},
"devDependencies": {
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.18.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}