-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "node-draft-releaser",
"version": "1.1.2",
"description": "Automatically publish an existing Draft Release when the \"package.json\" version changes",
"license": "MIT",
"author": {
"name": "James M. Greene",
"email": "[email protected]",
"url": "https://jamesmgreene.github.io/"
},
"keywords": [
"actions",
"node",
"draft-release"
],
"homepage": "https://github.com/JamesMGreene/node-draft-releaser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JamesMGreene/node-draft-releaser.git"
},
"bugs": {
"url": "https://github.com/JamesMGreene/node-draft-releaser/issues"
},
"main": "lib/run.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"action.yml",
"LICENSE.md",
"README.md",
"package.json"
],
"scripts": {
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"release": "scripts/cut-release.sh"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^2.2.0",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.1",
"@types/semver": "^7.1.0",
"jest": "^24.9.0",
"jest-circus": "^26.0.1",
"nock": "^12.0.3",
"prettier": "^2.0.5",
"ts-jest": "^24.3.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}