-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
58 lines (58 loc) · 1.08 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
51
52
53
54
55
56
57
58
{
"name": "eases",
"version": "1.0.8",
"description": "grab bag of easing equations",
"main": "index.js",
"license": "MIT",
"author": "Matt DesLauriers <dave.des@gmail.com>",
"dependencies": {},
"devDependencies": {
"tape": "~2.13.2"
},
"scripts": {
"test": "node test.js",
"dev": "beefy demo/index"
},
"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/eases.git"
},
"homepage": "https://github.com/mattdesl/eases",
"bugs": {
"url": "https://github.com/mattdesl/eases/issues"
},
"keywords": [
"ease",
"eases",
"robert",
"penner",
"easing",
"easings",
"linear",
"lerp",
"animation",
"tween",
"anim",
"animations",
"tweening",
"tweens",
"function",
"functions",
"expo",
"quint",
"quadratic"
]
}