-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 864 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 864 Bytes
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
{
"name": "action-conventional-commits",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:doitadrian/action-conventional-commits.git",
"author": "Adrian Smijulj <adrian1358@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"got": "^11.3.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.0",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"prettier": "^2.0.2",
"typescript": "^5.3.2"
},
"scripts": {
"build": "ncc build src/main.ts --out dist/main",
"watch": "ncc build src/main.ts --out dist/main --watch",
"test": "jest"
}
}