forked from Teakowa/setup-serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.86 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.86 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "typescript-action",
"version": "2.0.1",
"private": true,
"description": "TypeScript template action",
"main": "lib/setup-serverless.js",
"scripts": {
"build": "tsc && ncc build -m",
"build-prod": "run-s clean build",
"clean": "rimraf lib dist",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Teakowa/setup-serverless.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/cache": "^1.0.7",
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"@octokit/rest": "^18.12.0",
"node-fetch": "^2.6.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/parser": "^5.3.1",
"@vercel/ncc": "^0.31.1",
"husky": "^7.0.4",
"jest": "^24.9.0",
"jest-circus": "^27.3.1",
"js-yaml": "^4.1.0",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^24.3.0",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
],
"*.{css,scss}": [
"npx stylelint --fix"
]
},
"engines": {
"node": ">=12.0.0"
}
}