-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "prepare-release",
"version": "1.0.0",
"description": "Generates the changelog and contributors list since the last tag",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest --passWithNoTests",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/derekherman/prepare-release.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/derekherman/prepare-release/issues"
},
"homepage": "https://github.com/derekherman/prepare-release#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"tag-cmp": "^1.0.1",
"compare-versions": "^3.6.0"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"eslint": "^7.20.0",
"husky": "^4.3.8",
"jest": "^26.6.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}