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