forked from Kyon147/polaris-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.82 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@unicorns/polaris-vue",
"version": "0.2.8",
"description": "Shopify Polaris for Vue 2",
"module": "lib/polaris-vue.min",
"files": [
"lib/**/*",
"!.DS_Store"
],
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack-dev-server --config webpack.dev.js",
"test": "cross-env BABEL_ENV=test nyc --reporter=lcov --reporter=text --reporter=html mochapack --webpack-config webpack.test.js --colors --require test/setup.js test/**/*.spec.js test/**/**/*.spec.js",
"test:watch": "cross-env BABEL_ENV=test nyc --reporter=lcov --reporter=text --reporter=html mochapack --webpack-config webpack.test.js --colors -w --require test/setup.js test/**/*.spec.js test/**/**/*.spec.js"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"chai": "4.2.0",
"clean-webpack-plugin": "^1.0.1",
"cross-env": "^5.2.1",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-vue": "^2.0.2",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.4",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^5.2.3",
"extract-text-webpack-plugin": "^3.0.2",
"jsdom": "^15.2.1",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.1.2",
"mochapack": "^2.0.0",
"node-sass": "^4.14.1",
"node-sass-once-importer": "^5.3.2",
"nyc": "^14.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^8.0.2",
"sinon": "^7.5.0",
"style-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.2",
"vue-style-loader": "^4.1.2",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"nyc": {
"include": [
"src/*.js",
"src/**/*.js",
"src/**/*.vue",
"src/**/**/*.js",
"src/**/**/*.vue"
],
"all": true,
"instrument": true,
"sourceMap": false,
"extension": [
".js",
".vue"
]
},
"repository": {
"type": "git",
"url": "https://github.com/UnicornGlobal/polaris-vue.git"
},
"keywords": [],
"author": "ESC Apps Team <[email protected]>",
"license": "MIT"
}