-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 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
{
"name": "immediate",
"version": "3.3.0",
"description": "A cross browser microtask library",
"contributors": [
"Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)",
"Donavon West <github@donavon.com> (http://donavon.com)",
"Yaffle",
"Calvin Metcalf <calvin.metcalf@gmail.com>"
],
"testling": {
"files": "test/tests.js",
"browsers": [
"ie/6..latest",
"chrome/latest",
"firefox/3..latest",
"opera/10..latest",
"safari/4..latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/calvinmetcalf/immediate.git"
},
"browser": {
"./lib/nextTick": false
},
"bugs": "https://github.com/calvinmetcalf/immediate/issues",
"main": "lib/index.js",
"scripts": {
"build": "npm run build-js && npm run uglify",
"uglify": "uglifyjs dist/immediate.js -mc > dist/immediate.min.js",
"build-js": "browserify -s immediate ./lib/index.js | derequire > dist/immediate.js",
"test": "jshint lib/*.js && node test/tests.js | tspec"
},
"devDependencies": {
"browserify": "^16.5.1",
"derequire": "^2.1.1",
"jshint": "^2.5.1",
"tap-spec": "^5.0.0",
"tape": "^4.0.0",
"uglify-js": "^2.4.13"
}
}