generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "deployment-status",
"version": "0.1.0",
"private": true,
"description": "GitHub action to update deployment status",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license LICENSE",
"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/actions/javascript-template.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Chris Norman",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.3"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^12.0.4",
"@typescript-eslint/parser": "^5.42.1",
"@vercel/ncc": "^0.33.4",
"eslint": "^8.16.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.2.2",
"jest": "^28.1.0",
"jest-circus": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"typescript": "^4.8.4"
}
}