forked from DylanVann/check-pull-request-title
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 735 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 735 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
32
{
"name": "check-pull-request-title",
"version": "0.1.17",
"license": "MIT",
"author": "Dylan Vann <dylan@dylanvann.com> (https://dylanvann.com)",
"files": [
"action.yml",
"dist/index.js"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "ncc build src/index.ts --minify --v8-cache",
"lint": "tsdx lint",
"test": "tsdx test"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/github": "^1.1.0",
"@types/jest": "^24.0.22",
"@zeit/ncc": "^0.20.5",
"tsdx": "^0.11.0",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
}
}