-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "action-conventional-versioning",
"version": "1.0.0",
"description": "GitHub Action to automatically generate a version based on conventional commits",
"main": "index.js",
"scripts": {
"lint": "standard .",
"build": "ncc build src/index.js -o ./dist --license licenses.txt",
"test": "NODE_ENV=test jest --coverage",
"test:watch": "NODE_ENV=test jest --coverage --watch"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/jveldboom/action-conventional-versioning.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jveldboom/action-conventional-versioning/issues"
},
"homepage": "https://github.com/jveldboom/action-conventional-versioning#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"semver": "^7.5.2"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@vercel/ncc": "^0.36.0",
"jest": "^29.3.1",
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"dist/*"
]
}
}