forked from cityjson/cityjson-vue-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"name": "cityjson-vue-components",
"version": "0.3.3",
"description": "A collection of Vue components for CityJSON",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tudelft3d/cityjson-vue-components"
},
"author": {
"name": "Stelios Vitalis",
"email": "[email protected]"
},
"main": "dist/cityjson-vue-components.ssr.js",
"module": "dist/cityjson-vue-components.esm.js",
"unpkg": "dist/cityjson-vue-components.min.js",
"files": [
"dist/*",
"src/**/*.vue",
"!src/lib-dev.vue"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"bootstrap": "^4.3.1",
"earcut": "^2.2.1",
"eslint": "^7.16.0",
"eslint-plugin-vue": "^7.3.0",
"event-stream": "^4.0.1",
"jquery": "^3.4.1",
"jsonstream-next": "^3.0.0",
"lodash": "^4.17.15",
"popper": "^1.0.1",
"readable-stream-clone": "0.0.7",
"three": "^0.123.0",
"three-orbitcontrols": "^2.108.1",
"vue-async-computed": "^3.9.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^5.2.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-jest": "^24.1.3",
"i": "^0.3.6",
"minimist": "^1.2.0",
"rollup": "^1.12.1",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^5.0.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}