-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.04 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
{
"name": "gl-quat",
"version": "1.0.0",
"description": "gl-matrix's quaternion, split into smaller pieces",
"main": "index.js",
"scripts": {
"get-docs": "cat *.js | dox --api"
},
"dependencies": {
"gl-mat3": "^1.0.0",
"gl-vec3": "^1.0.3",
"gl-vec4": "^1.0.0"
},
"devDependencies": {
"dox": "git://github.com/hughsk/dox#api-context"
},
"repository": {
"type": "git",
"url": "git://github.com/stackgl/gl-quat.git"
},
"license": {
"type": "Zlib",
"url": "http://github.com/stackgl/gl-quat/blob/master/LICENSE.md"
},
"contributors": [
"Brandon Jones <tojiro@gmail.com>",
"Colin MacKenzie IV <sinisterchipmunk@gmail.com>"
],
"keywords": [
"ecosystem:stackgl",
"gl-matrix",
"matrix",
"math",
"gl",
"mat4",
"mat4x4",
"4x4",
"quat",
"quaternion",
"slerp",
"spherical interpolation",
"mat",
"vector",
"maths"
],
"homepage": "https://github.com/stackgl/gl-quat",
"bugs": {
"url": "https://github.com/stackgl/gl-quat/issues"
}
}