-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 868 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 868 Bytes
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
{
"name": "glm-client-base",
"version": "0.0.14",
"description": "The base library for the GLM client.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WebGL-Map/glm-client-base.git"
},
"main": "dist/glm.umd.js",
"module": "dist/glm.umd.js",
"dependencies": {
"math.gl": "^1.0.4",
"stats.js": "^0.17.0",
"jquery": "^3.3.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"file-loader": "^2.0.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "webpack --mode production",
"dev-build": "webpack --mode development"
}
}