-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "request-frame",
"version": "1.5.3",
"description": "requestAnimationFrame & cancelAnimationFrame polyfill for optimal cross-browser development.",
"main": "dist/request-frame.js",
"jsnext:main": "dist/request-frame.es.js",
"scripts": {
"bump": "gulp bump",
"header": "gulp",
"build": "rollup -c rollup/rollup.config.umd.js && rollup -c rollup/rollup.config.es.js",
"watch": "rollup -c rollup/rollup.config.umd.js -c --watch",
"test": "./node_modules/.bin/http-server ./ -p 9999",
"dummy": "wzrd dummy.js | wtch | garnish"
},
"repository": {
"type": "git",
"url": "https://github.com/julienetie/request-frame"
},
"keywords": [
"requestAnimationFrame",
"webkitRequestAnimationFrame",
"mozRequestAnimationFrame",
"cancelAnimationFrame",
"mozCancelAnimationFrame",
"webkitCancelAnimationFrame",
"webkitCancelRequestAnimationFrame",
"setTimeout",
"cancelTimeout",
"timing functions",
"requestAnimationFrame polyfill",
"polyfill",
"animation timing",
"animation timestamp"
],
"author": "Julien Etienne",
"license": "MIT",
"bugs": {
"url": "https://github.com/julienetie/request-frame/issues"
},
"homepage": "https://github.com/julienetie/request-frame",
"devDependencies": {
"babel-cli": "*",
"babel-preset-es2015": "*",
"babel-preset-es2015-rollup": "^1.2.0",
"chai": "*",
"gulp": "^3.9.1",
"gulp-bump": "*",
"gulp-concat": "*",
"gulp-es-next": "*",
"gulp-header": "*",
"gulp-rename": "*",
"http-server": "*",
"mocha": "*",
"requirejs": "*",
"rollup": "*",
"rollup-plugin-babel": "*",
"rollup-watch": "*"
}
}