generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "@keep-network/npm-version",
"version": "0.0.1",
"description": "Action bumping NPM package version",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "mocha --exit --recursive --timeout 10000",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": "git+https://github.com/keep-network/npm-version-bump.git",
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "Jakub Nowakowski <[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/keep-network/npm-version-bump/issues"
},
"homepage": "https://github.com/keep-network/npm-version-bump#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"fs": "0.0.1-security",
"semver": "^7.3.5"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"chai": "^4.3.0",
"eslint": "^7.24.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep",
"mocha": "^8.2.1",
"prettier": "^2.2.1"
}
}