forked from toji/gl-matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "@kitten-team/gl-matrix",
"description": "Javascript Matrix and Vector library for High Performance WebGL apps",
"version": "2.8.5",
"main": "dist/gl-matrix.js",
"types": "dist/gl-matrix.d.ts",
"homepage": "http://glmatrix.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/KittenTeam/gl-matrix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/KittenTeam/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-all": "npm run update-license-version&&npm run build&&npm run build-min"
},
"devDependencies": {
"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-cli": "^2.1.3",
"webpack": "^4.8.3"
},
"dependencies": {},
"sideEffects": false
}