-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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": "setup-fastly-cli",
"version": "0.1.1",
"private": true,
"description": "GitHub Action for setting up and configuring the Fastly cli",
"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/setup-fastly-cli.git"
},
"keywords": [
"actions"
],
"author": "softprops",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/exec": "^1.1.0",
"@actions/tool-cache": "^1.7.1",
"@actions/http-client": "^1.0.11"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.17.11",
"@zeit/ncc": "^0.22.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "2.0.5",
"ts-jest": "^26.5.6",
"typescript": "^3.9.10"
},
"lint-staged": {
"{__tests__,src}/**/*.ts": [
"npm run fmt"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}