forked from LightAPIs/free-export-bookmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
69
70
71
72
{
"name": "free-export-bookmarks",
"description": "A extension project",
"version": "1.4.4",
"author": "pana <new4wang@outlook.com>",
"license": "MIT",
"private": true,
"scripts": {
"build-chrome-watch": "vue-cli-service build-watch --mode chrome",
"build-firefox-watch": "vue-cli-service build-watch --mode firefox",
"build-edge-watch": "vue-cli-service build-watch --mode edge",
"build-chrome": "vue-cli-service build --mode chromezip",
"build-firefox": "vue-cli-service build --mode firefoxzip",
"build-edge": "vue-cli-service build --mode edgezip",
"lint": "vue-cli-service lint",
"fix": "eslint --fix 'src/**/*.{js,vue,scss}'",
"format": "prettier --write 'src/**/*.{js,vue,scss}'",
"release": "standard-version"
},
"lint-staged": {
"src/**/*.{js,vue,scss}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"scripts": {
"posttag": "npm run build-chrome && npm run build-firefox && npm run build-edge"
}
},
"dependencies": {
"core-js": "^3.6.5",
"element-ui": "^2.15.6",
"vue": "^2.6.14"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"commitizen": "^4.2.2",
"commitlint": "^11.0.0",
"copy-webpack-plugin": "^6.3.2",
"cz-customizable": "^6.3.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-beta.4",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^1.19.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"standard-version": "^9.0.0",
"vue-cli-plugin-chrome-ext": "~0.0.5",
"vue-template-compiler": "^2.6.14",
"zip-webpack-plugin": "^4.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}