This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.21 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
73
74
75
76
77
{
"name": "vue-unleash",
"version": "1.2.0",
"author": "Chris Mitchell (@crishellco)",
"description": "A Vue plugin for the Unleash open-source feature flag platform",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"test:js": "jest",
"lint:js": "eslint --ext .js,.vue src/",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crishellco/vue-unleash.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/crishellco/vue-unleash/issues"
},
"homepage": "https://crishellco.github.io/vue-unleash/",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^12.1.4",
"@form8ion/commitlint-config": "^1.0.19",
"@vue/test-utils": "^1.0.0-beta.30",
"axios": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-vue": "^2.0.2",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.0.1",
"husky": "^7.0.0",
"jest": "^24.9.0",
"lodash.keyby": "^4.6.0",
"npm-run-all": "^4.1.5",
"poi": "^12.7.1",
"prettier": "^1.19.1",
"regenerator-runtime": "^0.13.3",
"semantic-release": "^17.4.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.11",
"vue-html-loader": "^1.2.4",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.2",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"peerDependencies": {
"vue": "^2.6.10",
"vuex": "^3.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}