-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.41 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
{
"name": "vue-flags-webpack-plugin",
"version": "1.1.3",
"description": "remove useless code by setting flags in .vue SFC file",
"main": "index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "npm run lint && npx tape test/*.test.js",
"lint": "npx standard --fix",
"check": "npx npm-check-updates"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lovetingyuan/vue-flags-webpack-plugin.git"
},
"keywords": [
"vue",
"webpack",
"plugin",
"flag",
"flags",
"toggle",
"toggles",
"feature",
"features",
"postcss",
"loader",
"sfc",
"remove",
"code",
"ignore",
"optimization"
],
"author": "tingyuan",
"license": "MIT",
"bugs": {
"url": "https://github.com/lovetingyuan/vue-flags-webpack-plugin/issues"
},
"homepage": "https://github.com/lovetingyuan/vue-flags-webpack-plugin#readme",
"dependencies": {
"chalk": "^4.0.0",
"clear-module": "^4.1.1",
"find-cache-dir": "^3.3.1",
"loader-utils": "^2.0.0",
"watchpack": "^1.6.1"
},
"peerDependencies": {
"webpack": "^4.42.1"
},
"devDependencies": {
"husky": "^4.2.3",
"standard": "^14.3.3",
"tape": "^4.13.2",
"fs-extra": "^9.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"standard": {}
}