-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 KB
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
{
"name": "release-to-github-with-changelog",
"version": "1.2.4",
"description": "Parses CHANGELOG.md to publish a new release resource to the Github api",
"main": "index.js",
"bin": {
"release-to-github-with-changelog": "bin/index.js",
"release-to-github-with-changelog-pre-release-checks": "bin/pre-release-checks.js"
},
"scripts": {
"test": "mocha bin/**/*spec.js",
"release": "npm publish && node bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transferwise/release-to-github-with-changelog.git"
},
"keywords": [
"npm",
"release",
"github"
],
"author": "adrienDog",
"license": "ISC",
"bugs": {
"url": "https://github.com/adriendog/release-to-github-with-changelog/issues"
},
"homepage": "https://github.com/adriendog/release-to-github-with-changelog#readme",
"dependencies": {
"colors": "^1.3.2",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"shelljs": "^0.8.2",
"yargs": "^12.0.2"
},
"devDependencies": {
"@transferwise/eslint-config": "^6.0.0",
"chai": "^3.5.0",
"eslint": "^4.18.2",
"eslint-plugin-import": "^2.2.0",
"mocha": "^5.2.0",
"nock": "^9.0.2",
"proxyquire": "^1.7.10",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"prettier": "@transferwise/eslint-config/.prettierrc.js",
"engines": {
"node": "^24"
}
}