-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "remove-git-ignored",
"version": "1.1.3",
"description": "Small library that will find all .gitignore files from a rootPath folder and will delete all the ignored files.",
"main": "src/index.js",
"bin": {
"remove-git-ignored": "./bin/index.js"
},
"scripts": {
"eslint": "eslint src/**/*.js",
"test": "npm run eslint && istanbul cover ./node_modules/.bin/_mocha tests",
"test:dev": "mocha tests --recursive --watch",
"codecov": "cat coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js"
},
"author": "Ricardo Canastro",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/canastro/remove-git-ignored"
},
"bugs": {
"url": "https://github.com/canastro/remove-git-ignored/issues"
},
"keywords": [
"git",
"path",
"remove",
"ignore",
"ignored"
],
"devDependencies": {
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"eslint": "^3.13.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mock-require": "^2.0.1",
"require-uncached": "^1.0.3",
"sinon": "^1.17.3"
},
"dependencies": {
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"cli-spinner": "^0.2.5",
"commander": "^2.9.0",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"inquirer": "^2.0.0",
"query-paths": "^1.0.2",
"queue": "^4.0.1",
"update-notifier": "^1.0.3"
}
}