forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.95 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "deck.gl",
"description": "A suite of 3D-enabled data visualization overlays, suitable for react-map-gl",
"license": "MIT",
"version": "4.1.0-beta.6",
"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": "npm run build-clean && npm run build-es6 && npm run build-es5",
"cover": "NODE_ENV=test nyc --reporter html --reporter cobertura --reporter=lcov npm run test-cover",
"lint": "eslint src test examples && npm run lint-yarn",
"lint-yarn": "!(grep -q unpm.u yarn.lock) || (echo 'Please rebuild yarn file using public npmrc' && false)",
"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 build && npm run test-node",
"test-fast": "npm run test-node",
"test-cover": "NODE_ENV=test tape -r babel-register test/node.js && nyc report",
"test-node": "node test/node.js",
"test-dist": "node test/node-dist.js",
"test-browser": "webpack-dev-server --env.test --progress --hot --open",
"bench": "node test/bench/node.js",
"bench-browser": "webpack-dev-server --env.bench --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-mat4": "^1.1.4",
"gl-vec2": "^1.0.0",
"gl-vec3": "^1.0.3",
"gl-vec4": "^1.0.1",
"hammerjs": "^2.0.8",
"lodash.flattendeep": "^4.4.0",
"prop-types": "^15.5.8",
"seer": "^0.2.3"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^4.1.1",
"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",
"coveralls": "^2.13.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",
"jsdom": "^9.11.0",
"luma.gl": ">=4.0.0-beta.5",
"module-alias": "^2.0.0",
"nyc": "^10.2.0",
"path-exists-cli": "^1.0.0",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"reify": "^0.4.4",
"source-map-loader": "^0.2.1",
"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",
"webpack": "^2.4.0",
"webpack-dev-server": "^2.4.0"
},
"peerDependencies": {
"luma.gl": ">=4.0.0-beta.5",
"react": "0.14.x - 15.x",
"react-dom": "0.14.x - 15.x"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js",
"src/layers/deprecated"
]
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
}
}