forked from ABI-Software/12labours-mapintegratedvuer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.18 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.18 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@abi-software/mapintegratedvuer",
"version": "0.3.15",
"license": "Apache-2.0",
"scripts": {
"serve": "vue-cli-service serve --port 8081",
"build": "vue-cli-service build --mode prod",
"test-unit": "mochapack --webpack-config test/unit/webpack.config.js --require test/unit/setup.js test/unit/**/*.spec.js",
"lint": "vue-cli-service lint",
"build-bundle": "vue-cli-service build --target lib --name mapintegratedvuer ./src/components/index.js",
"build-static": "vue-cli-service build --dest test_html --mode static",
"start": "vue-cli-service serve",
"cypress": "cypress"
},
"repository": {
"type": "git",
"url": "https://github.com/ABI-Software/mapintegratedvuer.git"
},
"main": "./dist/mapintegratedvuer.common.js",
"files": [
"assets/*",
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"dependencies": {
"@abi-software/flatmapvuer": "^0.4.0",
"@abi-software/map-side-bar": "^1.3.37",
"@abi-software/plotvuer": "^0.3.9",
"@abi-software/scaffoldvuer": "^0.1.58",
"@abi-software/simulationvuer": "^0.6.5",
"@abi-software/svg-sprite": "^0.2.0",
"@soda/get-current-script": "^1.0.2",
"core-js": "^3.3.2",
"d3-time-format": "^3.0.0",
"element-ui": "^2.13.0",
"es6-promise": "^4.2.8",
"jsonschema": "^1.4.0",
"lodash": "^4.17.21",
"postcss-prefix-selector": "^1.7.2",
"shepherd.js": "^7.1.5",
"splitpanes": "^2.3.6",
"svg-inline-loader": "^0.8.2",
"vue": "^2.6.10",
"vue-cli-plugin-webpack-bundle-analyzer": "^2.0.0",
"vue-draggable-resizable": "2.1.0",
"vue-router": "^3.4.9",
"vuex": "^3.5.1",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"@cypress/vue": "^2.2.4",
"@cypress/webpack-dev-server": "^1.3.1",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-plugin-unit-mocha": "^4.4.4",
"@vue/cli-service": "^4.5.13",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.0.3",
"babel-plugin-component": "^1.1.1",
"base64-inline-loader": "^1.1.1",
"canvas": "^2.8.0",
"chai": "^4.1.2",
"cypress": "^7.4.0",
"cypress-wait-until": "^1.7.1",
"dom-parser": "^0.1.6",
"eslint": "^5.16.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^5.0.0",
"file-loader": "^5.1.0",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"mocha": "^8.1.3",
"mochapack": "^2.1.4",
"node-loader": "^0.6.0",
"node-sass": "^4.14.1",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^3.1.2",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.12"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"mocha": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}