-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 919 Bytes
/
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
{
"name": "gitignore-it",
"version": "1.0.4",
"description": "A command-line CLI to generate .gitignore files",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint *.js"
},
"bin": {
"gitignore": "./index.js"
},
"keywords": [
"cli",
"gitignore"
],
"preferGlobal": true,
"author": "Christopher Kade",
"license": "MIT",
"dependencies": {
"prompts": "^2.1.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^24.8.0"
},
"engines": {
"npm": ">=5.5.0",
"node": ">=9.3.0"
},
"bugs": {
"url": "https://github.com/christopherkade/gitignore-it/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christopherkade/gitignore-it.git"
},
"homepage": "https://github.com/christopherkade/gitignore-it"
}