-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "jquery.requestanimationframe",
"description": "Replaces the standard jQuery timer loop with requestAnimationFrame where supported. Requires jQuery >=1.8",
"version": "0.2.3-pre",
"main": "dist/jquery.requestanimationframe.js",
"homepage": "https://github.com/gnarf37/jquery-requestAnimationFrame",
"author": {
"name": "Corey Frang",
"email": "[email protected]",
"url": "https://github.com/gnarf37"
},
"contributors": [
{
"name": "Corey Frang",
"email": "[email protected]",
"url": "http://gnarf.net"
},
{
"name": "Michał Gołębiowski",
"email": "[email protected]"
}
],
"files": [
"dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git://github.com/gnarf37/jquery-requestAnimationFrame.git"
},
"bugs": "https://github.com/gnarf37/jquery-requestAnimationFrame/issues",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"eslint-config-jquery": "1.0.0",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-qunit": "1.2.0",
"grunt-contrib-uglify": "2.0.0",
"grunt-eslint": "19.0.0",
"grunt-text-replace": "0.4.0",
"jquery": "1.11.3",
"load-grunt-tasks": "3.5.2",
"qunitjs": "1.23.1"
},
"scripts": {
"test": "grunt"
},
"keywords": [
"animation"
]
}