forked from watson/git-state
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "@nti/git-state",
"version": "5.0.0",
"description": "Get the current state of any git repository",
"main": "index.js",
"scripts": {
"pretest": "touch dummy.file",
"test": "standard && tape test.js",
"posttest": "rm dummy.file"
},
"repository": {
"type": "git",
"url": "https://github.com/NextThought/git-state.git"
},
"dependencies": {},
"devDependencies": {
"standard": "^14.3.4",
"tape": "^4.4.0"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"git",
"status",
"state",
"branch",
"repo",
"repository",
"ahead",
"dirty",
"untracked"
],
"author": "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)",
"contributors": [
"Jonathan Grimes <jonathan.grimes@nextthought.com> (https://github.com/jsg2021)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NextThought/git-state/issues"
},
"homepage": "https://github.com/NextThought/git-state",
"publishConfig": {
"registry": "https://npm.nextthought.com"
}
}