forked from maptalks/maptalks.three
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "maptalks.three",
"version": "0.11.1",
"description": "A maptalks Layer to render with THREE.js.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maptalks/maptalks.three.js.git"
},
"files": [
"dist/maptalks.three.js",
"dist/maptalks.three.min.js",
"dist/maptalks.three.es.js",
"dist/maptalks.three.js.map"
],
"main": "dist/maptalks.three.js",
"module": "dist/maptalks.three.es.js",
"jsnext:main": "dist/maptalks.three.es.js",
"scripts": {
"dev": "rollup -w -c rollup.config.js",
"build": "rollup --environment BUILD:production -c rollup.config.js",
"build-dev": "rollup -c rollup.config.js",
"preversion": "npm run lint",
"version": "npm run build && git add -A dist",
"lint": "eslint index.js src/**/*.js test/**/*.js",
"prepublish": "npm run lint && npm run build"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^9.0.0",
"eslint": "^4.19.1",
"eslint-config-maptalks": "^0.3.0",
"eslint-plugin-mocha": "^5.0.0",
"rollup": "^0.66.1",
"rollup-plugin-babel": "^4.1.0-0",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^6.0.0",
"three": "^0.97.0"
},
"peerDependencies": {
"maptalks": ">=0.39.0"
},
"dependencies": {
"geometry-extrude": "^0.1.2"
}
}