forked from toji/gl-matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1020 Bytes
/
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
{
"name": "gl-matrix",
"description": "Javascript Matrix and Vector library for High Performance WebGL apps",
"version": "2.3.2",
"main": "src/gl-matrix.js",
"homepage": "http://glmatrix.net",
"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]"
}
],
"devDependencies": {
"jasmine-node": "1.2.2",
"jsdoc": "^3.4.0",
"node-libs-browser": "^0.5.2",
"simd": "2.0.0",
"webpack": "^1.9.10"
},
"license": "MIT",
"scripts": {
"test": "jasmine-node spec",
"doc": "jsdoc -c jsdoc.config.json",
"build": "webpack",
"build-min": "webpack --config webpack.config.min.js",
"build-all": "webpack && webpack --config webpack.config.min.js && jsdoc -c jsdoc.config.json"
}
}