-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
37 lines (37 loc) · 874 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
{
"name": "goops",
"version": "1.0.1",
"description": "A CLI tool that automatically generates a gitignore for a project",
"bin": {
"goops": "src/index.js"
},
"scripts": {
"test": "mocha tests",
"postinstall": "mkdir -p gitignores && node src/load-gitignores.js"
},
"main": "src/index.js",
"keywords": [
"git",
"command line tool",
"developer experience"
],
"bugs": {
"url": "https://github.com/captainsafia/goops/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/captainsafia/goops"
},
"author": "Safia Abdalla <[email protected]> (http://safia.rocks/)",
"license": "MIT",
"dependencies": {
"gitignore": "^0.6.0",
"lodash.pickby": "^4.6.0",
"minimatch": "^3.0.3",
"readline-sync": "^1.4.6"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}