-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.6 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
52
53
54
55
56
57
58
59
60
61
{
"name": "update_release",
"version": "1.3.1",
"description": "Update release",
"main": "lib/main.js",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"lint": "eslint \"src/**.ts\" --fix",
"package": "ncc build lib/main.js -o dist --source-map --license licenses.txt",
"test": "jest --coverage",
"all": "npm run build && npm run lint && npm run package && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tubone24/update_release.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "tubone24",
"license": "MIT",
"bugs": {
"url": "https://github.com/tubone24/update_release/issues"
},
"homepage": "https://github.com/tubone24/update_release#readme",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "2.2.0",
"@actions/exec": "1.1.1"
},
"devDependencies": {
"@types/jest": "29.2.1",
"@types/node": "16.18.3",
"@typescript-eslint/parser": "5.42.0",
"@vercel/ncc": "0.34.0",
"eslint": "8.26.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-github": "4.4.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.3",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"husky": "8.0.1",
"jest": "29.2.2",
"jest-circus": "29.2.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint"
]
}
}