-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.69 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
62
63
64
65
66
67
68
{
"name": "action-update-version",
"version": "1",
"description": "Update your files version field on new releases",
"main": "lib/main.js",
"scripts": {
"build": "tsc && yarn run package",
"lint": "eslint src --ext .tsx,.js,.ts",
"lint:fix": "yarn lint --fix",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pocket-apps/action-version-update.git"
},
"keywords": [
"actions",
"version",
"release",
"update",
"tag"
],
"author": "Victor Navarro <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.6",
"@actions/exec": "1.0.4",
"@actions/github": "4.0.0",
"yaml": "1.10.0"
},
"devDependencies": {
"@pocket-apps/eslint-config": "3.0.0",
"@types/node": "14.11.2",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"@vercel/ncc": "0.24.1",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.21.3",
"eslint-plugin-react-hooks": "4.1.2",
"eslint-plugin-replace-relative-imports": "^1.0.0",
"eslint-plugin-unused-imports": "0.1.3",
"husky": "4.2.5",
"lint-staged": "10.2.13",
"typescript": "4.0.2"
},
"eslintConfig": {
"extends": [
"@pocket-apps/eslint-config"
]
},
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx}": [
"yarn lint:fix",
"yarn lint"
]
}
}