-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
91 lines (91 loc) · 2.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
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
{
"name": "aframe-aterrain-component",
"version": "1.2.0",
"description": "A 3d geographic map component for AFrame that uses Cesium data.",
"unused_main": "dist/aframe-terrain-component.js",
"unused_unpkg": "dist/aframe-aterrain-component.min.js",
"scripts": {
"unused_dev": "budo src/all.js:dist/aframe-aterrain-component.min.js --port 7000 --live --open",
"unused_rollup": "rollup src/all.js --output.format umd --name 'aframe-aterrain-component' --output.file dist/aframe-aterrain-component.js",
"unused_error_with_multi": "npx webpack --mode development src/all.js dist/aframe-aterrain-component.js",
"bundle": "npx webpack",
"compress": "uglifyjs dist/aframe-aterrain-component.js > dist/aframe-aterrain-component.min.js",
"build": "npm run bundle && npm run compress",
"dist": "npm run bundle && npm run compress",
"prepare": "npm run bundle && npm run compress",
"lint": "semistandard -v | snazzy",
"ghpages": "ghpages",
"start": "npm run dev",
"test": "karma start ./tests/karma.conf.js",
"test:firefox": "karma start ./tests/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/karma.conf.js --browsers Chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anselm/aterrain.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"aterrain",
"geography",
"cartography",
"cesium",
"globe",
"map"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/anselm/aterrain/issues"
},
"homepage": "https://github.com/anselm/aterrain#readme",
"devDependencies": {
"aframe": "^0.8.2",
"browserify": "^13.0.0",
"budo": "^11.2.2",
"chai": "^3.4.1",
"chai-shallow-deep-equal": "^1.3.0",
"ghpages": "^0.0.8",
"karma": "^2.0.2",
"karma-browserify": "^5.2.0",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "2.0.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"karma-sinon-chai": "^1.1.0",
"mocha": "^5.2.0",
"randomcolor": "^0.4.4",
"semistandard": "^12.0.1",
"shelljs": "^0.7.0",
"shx": "^0.1.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"snazzy": "^4.0.0",
"uglify-es": "github:mishoo/UglifyJS2#harmony",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.5"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"dist/**"
]
},
"dependencies": {
"cesium": "^1.46.1",
"rollup": "^0.57.1",
"three": "^0.91.0",
"uglify-js": "^3.4.0"
}
}