-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
{
"name": "request-interval",
"version": "2.0.0",
"description": "Like setInterval() but with requestAnimationFrame()",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha-phantomjs ./test/runner.html",
"build": "browserify -d -r raf -r assert -r ./index.js:request-interval > bundle.js",
"watch": "onchange 'index.js' 'test/index.js' -- npm test"
},
"keywords": [
"requestAnimationFrame",
"setInterval"
],
"license": "MIT",
"author": "Antoine Lehurt <code@kewah.com> (http://kewah.com/)",
"homepage": "https://github.com/nk-components/request-interval",
"repository": {
"type": "git",
"url": "https://github.com/nk-components/request-interval"
},
"bugs": {
"url": "https://github.com/nk-components/request-interval/issues"
},
"devDependencies": {
"browserify": "^13.0.0",
"component-raf": "^1.2.0",
"mocha": "^2.0.1",
"mocha-phantomjs": "^4.0.2",
"onchange": "^2.2.0",
"phantomjs": "^2.1.7"
},
"browser": {
"raf": "component-raf"
}
}