forked from thefringeninja/action-minver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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": "action-docker-build",
"version": "0.1.0",
"description": "Version your code with MinVer",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "prettier --list-different \"src/**/*.ts\" && tslint --project ./",
"format": "prettier --write \"src/**/*.ts\" && tslint --project ./ --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/thefringeninja/action-minver.git"
},
"author": "João P. Bragança",
"license": "MIT",
"bugs": {
"url": "https://github.com/thefringeninja/action-minver/issues"
},
"homepage": "https://github.com/thefringeninja/action-minver#readme",
"dependencies": {
"@actions/core": "1.2.0",
"@actions/exec": "1.0.1",
"decamelize": "3.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "12.11.6",
"jest": "24.9.0",
"jest-each": "24.9.0",
"prettier": "^1.19.1",
"ts-jest": "24.2.0",
"tslint": "5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.6.4"
}
}