-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 KB
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
{
"name": "vmath",
"version": "1.4.8",
"description": "Yet another gl-matrix: faster and smaller",
"main": "dist/vmath.js",
"module": "index.js",
"jsnext:main": "index.js",
"scripts": {
"prepare": "npm run build",
"pretest": "npm run build:dev",
"build": "npm run build:dev && npm run build:min",
"build:dev": "rollup -c ./script/rollup.config.js",
"build:min": "uglifyjs ./dist/vmath.dev.js --mangle --source-map url=vmath.min.js.map -o ./dist/vmath.min.js",
"docs": "documentation build ./index.js -f md -o api.md",
"test": "tap test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gamedev-js/vmath.git"
},
"keywords": [
"math",
"algebre",
"vector",
"matrix"
],
"author": "jwu",
"license": "MIT",
"bugs": {
"url": "https://github.com/gamedev-js/vmath/issues"
},
"homepage": "https://github.com/gamedev-js/vmath/issues",
"dependencies": {},
"devDependencies": {
"documentation": "^4.0.0-beta.19",
"fs-jetpack": "^0.13.2",
"rollup": "^0.54.1",
"rollup-plugin-buble": "^0.18.0",
"tap": "^10.3.0",
"uglify-js": "^3.3.7"
},
"files": [
"dist",
"lib",
"index.js"
]
}