-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "nodegit-flow",
"version": "2.2.2",
"description": "nodegit-flow contains gitflow methods that aren't include in the vanilla nodegit package",
"main": "build/src/index.js",
"scripts": {
"compile": "babel -d ./build/spec ./spec && babel -d ./build/src ./src",
"eslint": "./node_modules/.bin/eslint src spec",
"prepublish": "babel -d ./build/src ./src",
"debug-test": "npm run eslint && npm run compile && node-debug --debug-brk node_modules/.bin/jasmine --config=jasmine.json",
"test": "npm run eslint && npm run compile && node_modules/.bin/jasmine --config=jasmine.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Axosoft/nodegit-flow.git"
},
"keywords": [
"node",
"git",
"gitflow",
"nodegit"
],
"files": [
"build/src"
],
"author": "Axosoft, LLC",
"license": "ISC",
"bugs": {
"url": "https://github.com/Axosoft/nodegit-flow/issues"
},
"homepage": "https://github.com/Axosoft/nodegit-flow#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"eslint": "^5.8.0",
"fs-extra": "^0.26.2",
"jasmine": "^2.99.0",
"jsdoc-to-markdown": "^5.0.3",
"nodegit": "^0.28.0-alpha.21"
},
"peerDependencies": {
"nodegit": ">=0.28.0-alpha.21"
}
}