-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "nodegit-kit",
"description": "Complementary NodeGit helpers returning native Promises, helps with git commands such as init, add, commit, status, diff",
"version": "0.21.0",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git://github.com/thisconnect/nodegit-kit.git"
},
"keywords": [
"promise",
"commit",
"log",
"status",
"diff",
"repo",
"repository",
"libgit2",
"nodegit",
"git"
],
"scripts": {
"pretest": "npm run clean",
"test": "tape test/*.js | tap-spec",
"precoverage": "npm run clean",
"coverage": "nyc --reporter=lcov --reporter=text tape test/*.test.js",
"codecov": "npm run coverage && codecov",
"clean": "rimraf ./test/repos && mkdirp ./test/repos"
},
"dependencies": {
"fildes": "^3.0.0",
"nodegit": "^0.27.0"
},
"license": "MIT",
"devDependencies": {
"codecov": "3.8.3",
"debug": "^4.1.1",
"fildes-extra": "^1.0.0",
"nyc": "15.1.0",
"tap-spec": "^5.0.0",
"tape": "5.5.3"
}
}