-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "github-change-remote-file",
"description": "create a new commit with a changed file",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && mkdirp dist && babel src --out-dir dist",
"coverage": "nyc report",
"coverage:upload": "npm run -s coverage -- --reporter=text-lcov | coveralls",
"prepublish": "npm run build",
"pretest:unit": "npm run build",
"test": "npm run test:style && npm run test:unit",
"test:style": "standard",
"test:unit": "nyc tap --no-cov test/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"engines": {
"node": ">=6"
},
"babel": {
"plugins": [
"transform-async-to-generator"
]
},
"standard": {
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/boennemann/github-change-remote-file.git"
},
"keywords": [
"git",
"commit"
],
"author": "Stephan Bönnemann <[email protected]> (http://boennemann.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/boennemann/github-change-remote-file/issues"
},
"homepage": "https://github.com/boennemann/github-change-remote-file#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"coveralls": "^2.11.12",
"mkdirp": "^0.5.1",
"nock": "^8.0.0",
"nyc": "^7.1.0",
"rimraf": "^2.5.4",
"semantic-release": "^4.3.5",
"standard": "^7.1.2",
"tap": "^6.3.0"
},
"dependencies": {
"bluebird": "^3.4.1",
"github": "^2.4.0",
"lodash": "^4.14.2"
}
}