-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 918 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
40
41
42
43
{
"name": "keyframes",
"version": "2.3.0",
"description": "keyframe utils for a generic timeline",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com"
},
"dependencies": {
"gl-vec3": "^1.0.2",
"lerp-array": "^1.0.0",
"unlerp": "^1.0.0"
},
"devDependencies": {
"tape": "~2.13.2"
},
"scripts": {
"test": "node test.js"
},
"testling": {
"files": "test.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/keyframes.git"
},
"homepage": "https://github.com/mattdesl/keyframes",
"bugs": {
"url": "https://github.com/mattdesl/keyframes/issues"
}
}