forked from qatium/turnstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "turnstyle",
"version": "0.1.5",
"private": true,
"description": "GitHub Action for limiting one workflow to complete at a time",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts --minify",
"buildcheck": "tsc --noEmit -p .",
"test": "jest --coverage",
"fmt": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"fmtcheck": "prettier --check 'src/**/*.ts' '__tests__/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softprops/diffset.git"
},
"keywords": [
"actions",
"github"
],
"author": "softprops",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@octokit/plugin-throttling": "^3.3.4",
"@octokit/rest": "^16.43.2"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@vercel/ncc": "^0.26.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"lint-staged": {
"{__tests__,src}/**/*.ts": [
"npm run fmt"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}