-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.44 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "easy-nodegit",
"version": "1.0.8",
"description": "a high level wrapper for nodegit with simple and elegant API",
"main": "lib/index.js",
"scripts": {
"lint": "standard --fix && npm-ensure -t deps",
"test": "npm run lint && npm run test-local",
"test-local": "mocha test/**/*.test.js",
"test-cov": "nyc npm run test-local",
"doc": "jsdoc2md lib/index.js > API.md",
"ci": "npm run lint && npm run test-cov",
"precommit": "npm run doc && lint-staged"
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"ensure": {
"deps": {
"checkDirs": [
"lib/**/*",
"bin/*"
]
}
},
"nyc": {
"reporter": [
"text",
"json",
"lcov"
]
},
"standard": {
"global": [
"describe",
"it",
"beforeEach",
"afterEach"
],
"ignore": [
"/test"
]
},
"dependencies": {
"extend": "^3.0.2",
"git-config-path": "^1.0.1",
"nodegit": "0.21.0",
"parse-git-config": "^2.0.2"
},
"devDependencies": {
"husky": "0.x",
"jsdoc-to-markdown": "^4.0.1",
"lint-staged": "^7.2.0",
"mocha": "^3.0.2",
"npm-ensure": "^1.0.0",
"nyc": "11.x",
"rimraf": "^2.6.2",
"standard": "^8.2.0"
},
"repository": {
"type": "git",
"url": "[email protected]:yibn2008/easy-nodegit.git"
},
"keywords": [
"easy-nodegit"
],
"author": "zoujie.wzj",
"license": "MIT"
}