forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.57 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.57 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
{
"name": "deck.gl",
"description": "A suite of 3D-enabled data visualization overlays, suitable for react-map-gl",
"license": "MIT",
"version": "4.1.0-alpha.1",
"keywords": [
"webgl",
"visualization",
"overlay",
"layer"
],
"repository": {
"type": "git",
"url": "https://github.com/uber/deck.gl.git"
},
"main": "dist/index.js",
"module": "dist-es6/index.js",
"files": [
"dist",
"dist-es6",
"src"
],
"scripts": {
"start": "(cd examples/layer-browser && (path-exists node_modules || npm i) && npm run start-local)",
"build-clean": "rm -fr dist dist-es6 && mkdir -p dist dist-es6",
"build-es6": "rm -fr dist-es6 && babel src --out-dir dist-es6 --plugins=static-fs --source-maps inline",
"build-es5": "rm -fr dist && babel src --out-dir dist --plugins=static-fs,transform-es2015-modules-commonjs --source-maps inline",
"build-buble": "buble dist-es6 -o dist --no modules --y dangerousForOf --objectAssign",
"build": "npm run build-clean && npm run build-es6 && npm run build-es5 && webpack -d --display-modules",
"lint": "eslint src test examples && npm run lint-yarn",
"lint-yarn": "!(find . -name yarn.lock -exec grep -l unpm.u {} \\; | egrep '.*')",
"publish-prod": "npm run build && npm run test && npm run test-dist && npm publish",
"publish-beta": "npm run build && npm run test && npm run test-dist && npm publish --tag beta",
"test": "npm run lint && npm run test-node",
"test-node": "node test/node.js",
"test-dist": "node test/node-dist.js",
"test-browser": "webpack-dev-server --config webpack.config.test-browser.js --progress --hot --open --port 3010",
"bench": "node test/bench/node.js",
"bench-browser": "webpack-dev-server --config webpack.config.bench-browser.js --progress --hot --open --port 3011",
"test-fp64": "(cd test/fp64-test && webpack-dev-server --config webpack.config.test-fp64.js --progress --hot --open)",
"test-rendering": "(cd test/rendering-test && webpack-dev-server --config webpack.config.test-rendering.js --progress --hot --open)"
},
"dependencies": {
"d3-hexbin": "^0.2.1",
"earcut": "^2.0.6",
"gl-matrix": "^2.3.2",
"lodash.flattendeep": "^4.4.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-static-fs": "^1.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.4.3",
"benchmark": "^2.1.3",
"brfs-babel": "^1.0.0",
"buble": "^0.15.1",
"buble-loader": "^0.4.0",
"colorbrewer": "^1.0.0",
"eslint": "^3.0.0",
"eslint-config-uber-es2015": "^3.0.0",
"eslint-config-uber-jsx": "^3.0.0",
"eslint-plugin-react": "~6.7.0",
"faucet": "0.0.1",
"file-loader": "^0.10.1",
"gl": "^4.0.3",
"immutable": "^3.8.1",
"luma.gl": "^3.0.0",
"module-alias": "^2.0.0",
"path-exists-cli": "^1.0.0",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.0",
"reify": "^0.4.4",
"tap-browser-color": "^0.1.2",
"tape": "^4.5.1",
"tape-catch": "^1.0.4",
"transform-loader": "^0.2.3",
"uglify-js": "^2.6.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"peerDependencies": {
"luma.gl": "^3.0.0",
"react": "0.14.x - 15.x",
"react-dom": "0.14.x - 15.x"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
]
}
}