forked from Submitty/action-pr-title
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "action-pr-title",
"version": "1.0.0",
"description": "GitHub action to validate PR titles meet our guidelines",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src test",
"lint:fix": "prettier --write \"**/*.ts\"",
"package": "npm run build && ncc build --source-map --license licenses.txt",
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha --require ts-node/register --reporter spec --recursive './test/**/*.ts'",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vercel/ncc": "^0.27.0",
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint-plugin-github": "^4.1.2",
"husky": "^5.1.3",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}