-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1016 Bytes
/
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
{
"name": "SubtileEasy",
"version": "1.2.0",
"private": true,
"description": "SubtitleEasy",
"scripts": {
"prettier": "npx prettier **/*.{md,html,json} -w",
"lint": "eslint **/*.js",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veraposeidon/SubtitleEasy.git"
},
"keywords": [],
"author": "veraposeidon",
"license": "MIT",
"bugs": {
"url": "https://github.com/veraposeidon/SubtitleEasy/issues"
},
"homepage": "https://github.com/veraposeidon/SubtitleEasy#readme",
"devDependencies": {
"chrome-types": "^0.1.199",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.0",
"lint-staged": "13.1.2",
"prettier": "2.8.4"
},
"lint-staged": {
"**/*.js": [
"npx eslint --fix"
],
"**/*.{md,html,json}": [
"npx prettier --write"
]
}
}