-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 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
{
"name": "104-ignore-not-interesting",
"version": "1.0.0",
"description": "Ignore jobs you are not interested in on 104",
"main": "src/index.js",
"scripts": {
"build": "webpack && cat meta.js index.user.js > temp && mv temp index.user.js",
"prettier:check": "prettier --check './**/*.{js,json,svelte}'",
"prettier:write": "prettier --write './**/*.{js,json,svelte}'",
"lint": "eslint './**/*.{js,svelte}'",
"lint:fix": "eslint --fix './**/*.{js,svelte}'",
"test:func": "codeceptjs run",
"test:func:ui": "codecept-ui --app"
},
"author": "YY",
"license": "MIT",
"devDependencies": {
"@codeceptjs/ui": "^0.4.2",
"codeceptjs": "^3.0.2",
"eslint": "^7.13.0",
"eslint-plugin-svelte3": "^2.7.3",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"prettier-plugin-svelte": "^1.4.1",
"puppeteer": "^5.5.0",
"svelte": "^3.29.7",
"svelte-loader": "^2.13.6",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
},
"lint-staged": {
"*.{svelte,js,json}": [
"npm run prettier:check"
],
"*.{svelte,js}": [
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:func"
}
}
}