-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "scatter-gl",
"version": "0.0.14",
"description": "webgl accelerated 3D/2D scatterplot renderer",
"author": {
"name": "Andy Coenen",
"email": "[email protected]"
},
"license": "Apache-2.0",
"repository": "PAIR-code/scatter-gl",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "lib/scatter-gl.min.js",
"jsdelivr": "lib/scatter-gl.min.js",
"scripts": {
"build": "yarn build-dist && yarn build-lib && yarn build-lib-min",
"build-dist": "rm -rf dist && tsc",
"build-lib": "webpack --config ./webpack/lib.config.ts",
"build-lib-min": "MINIMIZE=true webpack --config ./webpack/lib.config.ts",
"build-demo": "rm -rf demo_build && webpack --config ./webpack/demo.config.ts",
"demo": "webpack-dev-server --config ./webpack/demo.config.ts",
"deploy-demo": "yarn build-demo && node demo/deploy.js",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^24.0.3",
"copy-webpack-plugin": "^5.0.4",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "23",
"prettier": "^1.16.4",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"typescript": "^5.4.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.4.1",
"@types/three": "0.161"
},
"dependencies": {
"three": "0.161"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
}
}