forked from steveukx/git-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 870 Bytes
/
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": "simple-git",
"description": "Simple GIT interface for node.js",
"version": "1.121.0",
"author": "Steve King <steve@mydev.co>",
"contributors": [
{
"name": "Steve King",
"email": "steve@mydev.co"
}
],
"dependencies": {
"debug": "^4.0.1"
},
"devDependencies": {
"@kwsites/test-runner": "^0.1.1",
"sinon": "^7.3.2"
},
"keywords": [
"git",
"source control",
"vcs"
],
"license": "MIT",
"repository": "git://github.com/steveukx/git-js.git",
"main": "./src/index.js",
"files": [
"promise.*",
"src/",
"typings/"
],
"scripts": {
"test": "runner test/**/test*.js ",
"test:unit": "runner test/unit/test*.js",
"test:integration": "runner test/integration/test*.js",
"preversion": "yarn test",
"postversion": "npm publish && git push && git push --tags"
}
}