forked from softprops/turnstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "turnstyle",
"version": "0.1.0",
"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"
],
"author": "softprops",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.2",
"@octokit/rest": "^16.43.1",
"@octokit/plugin-throttling": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@zeit/ncc": "^0.21.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "1.19.1",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"lint-staged": {
"{__tests__,src}/**/*.ts": [
"npm run fmt"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}