-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "timers-browserify-full",
"description": "timers module based on nodes code for browserify",
"version": "0.0.1",
"author": {
"name": "Jan Schär",
"email": "jscissr@gmail.com"
},
"bugs": {
"url": "https://github.com/jscissr/timers-browserify-full/issues"
},
"contributors": [],
"devDependencies": {
"async": "^0.9.0",
"concat-stream": "^1.4.7",
"hyperquest": "^1.0.1",
"split": "^0.3.3",
"tape": "^3.5.0",
"tape-catch-onerror": "^1.0.3",
"through2": "^0.6.3",
"zuul": "^1.17.1"
},
"homepage": "https://github.com/jscissr/timers-browserify-full",
"keywords": [
"timers",
"timer",
"setTimeout",
"setInterval",
"setImmediate",
"browserify",
"compatible",
"browser"
],
"license": "MIT",
"main": "timers.js",
"repository": {
"type": "git",
"url": "https://github.com/jscissr/timers-browserify-full.git"
},
"scripts": {
"test": "node ./bin/test.js",
"test-browser": "zuul -- all-tests.js",
"test-browser-local": "zuul --local -- all-tests.js",
"test-node": "tape test/*.js",
"size": "browserify -r ./ | uglifyjs -c -m | gzip | wc -c"
}
}