forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.25 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
{
"name": "deck.gl",
"description": "A suite of 3D-enabled data visualization overlays, suitable for react-map-gl",
"license": "MIT",
"private": "true",
"keywords": [
"webgl",
"visualization",
"overlay",
"layer"
],
"repository": {
"type": "git",
"url": "https://github.com/uber/deck.gl.git"
},
"workspaces": [
"modules/*"
],
"scripts": {
"bootstrap": "scripts/bootstrap.sh",
"build": "lerna run build",
"clean": "lerna clean --yes && rm -rf node_modules",
"clean-all": "npm run clean && find . -name yarn.lock -exec rm -fr {} \\; && find . -name node_modules -exec rm -fr {} \\;",
"cover": "NODE_ENV=test nyc --reporter html --reporter cobertura --reporter=lcov npm run test cover",
"lint": "scripts/lint.sh",
"lint-docs": "scripts/lint-markdown.sh",
"publish-prod": "npm run build && npm run test && npm run test dist && scripts/publish.sh prod",
"publish-beta": "npm run build && npm run test && npm run test dist && scripts/publish.sh beta",
"start": "open http://uber.github.io/deck.gl/#/documentation/getting-started/installation?section=running-the-examples",
"test": "scripts/test.sh",
"test-fast": "scripts/test.sh fast",
"test-browser": "webpack-dev-server --config test/webpack.config.js --env.test_browser --progress --hot --open",
"test-render": "webpack-dev-server --config test/webpack.config.js --env.render --progress --hot --open",
"bench": "scripts/test.sh bench",
"bench-browser": "webpack-dev-server --config test/webpack.config.js --env.bench --progress --hot --open",
"collect-metrics": "./scripts/collect-metrics.sh",
"link-luma": "yarn && (cd node_modules && mv luma.gl luma.orig && ln -s ../../luma.gl/modules/core)",
"unlink-luma": "(cd node_modules && mv luma.gl luma.ln && mv luma.orig luma.gl)"
},
"devDependencies": {
"@babel/cli": "7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/polyfill": "7.0.0-rc.1",
"@babel/preset-env": "7.0.0-rc.1",
"babel-loader": "8.0.0-beta.4",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-version-inline": "^1.0.0",
"babel-preset-minify": "^0.4.0-alpha.caaefb4c",
"coveralls": "^2.13.0",
"eslint": "4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-uber-es2015": "^3.1.2",
"eslint-config-uber-jsx": "^3.3.3",
"eslint-plugin-react": "^7.10",
"gl": "^4.0.3",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^9.11.0",
"lerna": "^2.9.1",
"markdownlint-cli": "^0.8.1",
"module-alias": "^2.0.0",
"nyc": "^10.2.0",
"png.js": "^0.1.1",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"prettier": "1.13.5",
"prettier-check": "2.0.0",
"puppeteer": "^1.0.0",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"reify": "0.4.4",
"source-map-loader": "^0.2.1",
"tap-browser-color": "^0.1.2",
"tape": "^4.9",
"tape-catch": "^1.0.4",
"webpack": "^4.3.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"include": [
"modules/**/*.js"
],
"exclude": [
"test/**/*.js",
"**/deprecated"
]
},
"pre-commit": [
"test-fast"
]
}