-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
91 lines (91 loc) · 2.49 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "keytime",
"version": "0.1.1",
"description": "keyframed animation tools",
"main": "index.js",
"license": "MIT",
"author": "Matt DesLauriers <[email protected]>",
"dependencies": {
"eases": "^1.0.2",
"inherits": "^2.0.1",
"keyframes": "^2.2.1",
"lerp-array": "^1.0.2",
"xtend": "^4.0.0"
},
"devDependencies": {
"brfs": "^1.2.0",
"canvas-testbed": "^0.4.0",
"color-style": "^1.0.0",
"deepcopy": "^0.3.3",
"dom-classes": "0.0.1",
"dom-events": "^0.1.1",
"dom-select": "0.0.0",
"dom-style": "0.0.3",
"domify": "^1.3.0",
"domready": "^1.0.6",
"eases": "^1.0.2",
"frame-loop": "^1.1.1",
"insert-css": "^0.2.0",
"keycode": "^0.3.0",
"keytime-editor": "git://github.com/mattdesl/keytime-editor#v0.0.2",
"lerp": "^1.0.0",
"lerp-array": "^1.0.2",
"path-illustrator-client": "git://github.com/mattdesl/path-illustrator-client#dafe6742357137fab06e7681c7299cb61ae8b739",
"tape": "~2.13.2"
},
"scripts": {
"test": "node test.js",
"dev-dom": "beefy demo/dom/index.js --index=demo/dom/index-dev.html --open -- -t brfs",
"build-dom": "browserify demo/dom/index.js -t brfs | uglifyjs -cm > demo/dom/bundle/bundle.js",
"dev-dom2": "beefy demo/dom/simple.js --index=demo/dom/index-dev.html --open -- -t brfs",
"dev-buttons": "beefy demo/dom/buttons.js --index=demo/dom/index-dev.html --open -- -t brfs",
"build-buttons": "browserify demo/dom/buttons.js -t brfs | uglifyjs -cm > demo/dom/bundle/bundle3.js",
"build-dom2": "browserify demo/dom/simple.js -t brfs | uglifyjs -cm > demo/dom/bundle/bundle2.js",
"dev-canvas": "beefy demo/canvas/simple.js --open -- -t brfs"
},
"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/keytime.git"
},
"homepage": "https://github.com/mattdesl/keytime",
"bugs": {
"url": "https://github.com/mattdesl/keytime/issues"
},
"keywords": [
"key",
"frame",
"keyframe",
"keyframes",
"frames",
"keys",
"animation",
"tween",
"tweening",
"anim",
"animations",
"lerp",
"interpolation",
"interpolating",
"animating",
"tweens",
"ease",
"eases",
"easings",
"function",
"timeline",
"time"
]
}