This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.74 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
{
"name": "cityjson-vue-components",
"version": "0.6.0",
"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": "src/entry.js",
"module": "src/entry.js",
"files": [
"src/*"
],
"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",
"lint": "vue-cli-service lint",
"test": "concurrently \"parcel watch examples/ComboTest.html --out-dir ./examples/dev-bundle --public-url .\" \"static-server\""
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"bootstrap": "^4.6.0",
"cityjson-threejs-loader": "git+https://github.com/cityjson/cityjson-threejs-loader.git#develop",
"earcut": "^2.2.2",
"jquery": "^3.6.0",
"lodash": "^4.17.15",
"popper.js": "^1.16.1",
"three": "^0.127.0"
},
"devDependencies": {
"@vue/component-compiler-utils": "^3.2.0",
"babel-eslint": "^10.1.0",
"concurrently": "^6.0.2",
"eslint": "^7.18.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-vue": "^7.4.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"parcel-bundler": "^1.12.5",
"static-server": "^2.2.1",
"vue": "^2.6.12",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.12"
}
}