forked from toji/gl-matrix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "gl-matrix",
"description": "Javascript Matrix and Vector library for High Performance WebGL apps",
"version": "2.7.1",
"main": "dist/gl-matrix.js",
"module": "lib/gl-matrix.js",
"homepage": "http://glmatrix.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/toji/gl-matrix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/toji/gl-matrix.git"
},
"contributors": [
{
"name": "Brandon Jones",
"email": "[email protected]"
},
{
"name": "Colin MacKenzie IV",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha --require babel-register --recursive spec",
"old_test": "jasmine-node spec",
"doc": "jsdoc -c jsdoc.config.json",
"update-license-version": "node utils/update-license-version.js",
"build": "webpack --config utils/webpack.config.js",
"build-min": "webpack --config utils/webpack.config.min.js",
"build-esm": "BABEL_ENV=esm babel src -d lib",
"build-all": "npm run update-license-version&&npm run build&&npm run build-min&&npm run build-esm"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"jsdoc": "^3.5.5",
"mocha": "^5.1.1",
"node-libs-browser": "^2.1.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
},
"dependencies": {},
"sideEffects": false
}