-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1 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
{
"name": "is-git-clean",
"version": "1.1.0",
"description": "Find out if a git directory is clean or not",
"license": "MIT",
"repository": "jamestalmage/is-git-clean",
"author": {
"name": "James Talmage",
"email": "james@talmage.io",
"url": "github.com/jamestalmage"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"pretest": "xo && npm run fixtures",
"clean": "rm -rf fixtures",
"fixtures": "npm run clean && npm run fixture-dirs && npm run fixture-init",
"fixture-dirs": "mkdir fixtures && mkdir fixtures/clean && mkdir fixtures/not-clean",
"fixture-init": "git init fixtures/clean && git init fixtures/not-clean && touch fixtures/not-clean/dirty.txt && touch fixtures/not-clean/dirtier.txt",
"test": "ava"
},
"files": [
"index.js"
],
"keywords": [
"git",
"clean"
],
"dependencies": {
"execa": "^0.4.0",
"is-obj": "^1.0.1",
"multimatch": "^2.1.0"
},
"devDependencies": {
"ava": "^0.16.0",
"xo": "^0.16.0"
}
}