-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.34 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
{
"name": "animation-loops",
"version": "2.0.4",
"description": "Managed animationFrame looping for games, animations and web audio functions.",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "[email protected]:CharlotteGore/tick"
},
"dependencies": {
"raf": "2.0.1",
"bindpolyfill": "0.0.0"
},
"keywords": [
"requestAnimationFrame",
"game loop",
"animation manager",
"time manager",
"tick",
"events",
"games",
"animation",
"web audio",
"delta",
"time",
"callbacks",
"handles",
"pause",
"browser"
],
"devDependencies": {
"grunt": "~0.4.2",
"grunt-browserify": "~1.3.0",
"grunt-mocha-test": "~0.11.0",
"grunt-mocha-phantomjs": "~0.3.0",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-watch": "~0.5.3",
"chai": "~1.9.0",
"mocha": "~1.17.1"
},
"testling": {
"harness": "mocha-bdd",
"files": "test/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"
]
},
"author": "Charlotte Gore <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/charlottegore/tick/issues"
}
}