generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "actions-milestone",
"version": "0.0.0",
"private": true,
"description": "Add Milestone to PRs",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts,.js .",
"test": "jest",
"preversion": "npm ci && npm run build && npm ci --production && git add node_modules lib -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iyu/actions-milestone.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "iyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/iyu/actions-milestone/issues"
},
"homepage": "https://github.com/iyu/actions-milestone#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.19.31",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"jest": "^28.1.3",
"jest-circus": "^29.7.0",
"ts-jest": "^28.0.8",
"typescript": "^4.9.5"
}
}