Skip to content

Commit be5316e

Browse files
committed
Bump version
1 parent 2942895 commit be5316e

File tree

1 file changed

+89
-80
lines changed

1 file changed

+89
-80
lines changed

package.json

+89-80
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,91 @@
11
{
2-
"name": "when",
3-
"version": "3.7.3",
4-
"description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.",
5-
"keywords": [
6-
"cujo",
7-
"Promises/A+",
8-
"promises-aplus",
9-
"promise",
10-
"promises",
11-
"deferred",
12-
"deferreds",
13-
"when",
14-
"async",
15-
"asynchronous",
16-
"ender"
17-
],
18-
"homepage": "http://cujojs.com",
19-
"license": "MIT",
20-
"repository": {
21-
"type": "git",
22-
"url": "https://github.com/cujojs/when"
23-
},
24-
"bugs": "https://github.com/cujojs/when/issues",
25-
"maintainers": [
26-
{
27-
"name": "Brian Cavalier",
28-
"web": "http://hovercraftstudios.com"
29-
},
30-
{
31-
"name": "John Hann",
32-
"web": "http://unscriptable.com"
33-
}
34-
],
35-
"contributors": [
36-
{
37-
"name": "Brian Cavalier",
38-
"web": "http://hovercraftstudios.com"
39-
},
40-
{
41-
"name": "John Hann",
42-
"web": "http://unscriptable.com"
43-
},
44-
{
45-
"name": "Scott Andrews"
46-
}
47-
],
48-
"devDependencies": {
49-
"promises-aplus-tests": "~2",
50-
"benchmark": "~1",
51-
"microtime": "~0",
52-
"browserify": "~2",
53-
"buster": "~0.7",
54-
"jshint": "~2",
55-
"rest": "1.1.x",
56-
"optimist": "~0.6",
57-
"poly": "^0.6.1",
58-
"sauce-connect-launcher": "~0.4",
59-
"wd": "~0.2",
60-
"json5": "~0.2"
61-
},
62-
"main": "when",
63-
"ender": { "files": ["*.js", "lib/*.js", "node/*.js", "unfold/*.js", "monitor/*.js", "lib/decorators/*.js"] },
64-
"browser": {
65-
"vertx": false
66-
},
67-
"directories": {
68-
"test": "test"
69-
},
70-
"scripts": {
71-
"test": "jshint . && buster-test -e node && promises-aplus-tests test/promises-aplus-adapter.js",
72-
"build-browser-test": "browserify ./node_modules/poly/es5.js -o test/browser/es5.js && browserify ./test/*-test.js ./test/**/*-test.js -o test/browser/tests.js -x buster ",
73-
"browser-test": "npm run build-browser-test && buster-static -e browser -p 8080",
74-
"ci": "npm test && node test/sauce.js",
75-
"tunnel": "node test/sauce.js -m",
76-
"start": "buster-static -e browser",
77-
"benchmark": "node benchmark/promise && node benchmark/map",
78-
"browserify-es6": "browserify -s Promise es6-shim/Promise.browserify-es6.js --no-detect-globals -o es6-shim/Promise.js",
79-
"browserify": "browserify -s when build/when.browserify.js --no-detect-globals -o build/when.js",
80-
"browserify-debug": "browserify -s when build/when.browserify-debug.js --no-detect-globals -o build/when.js"
81-
}
2+
"name": "when",
3+
"version": "3.7.4",
4+
"description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.",
5+
"keywords": [
6+
"cujo",
7+
"Promises/A+",
8+
"promises-aplus",
9+
"promise",
10+
"promises",
11+
"deferred",
12+
"deferreds",
13+
"when",
14+
"async",
15+
"asynchronous",
16+
"ender"
17+
],
18+
"homepage": "http://cujojs.com",
19+
"license": "MIT",
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/cujojs/when"
23+
},
24+
"bugs": "https://github.com/cujojs/when/issues",
25+
"maintainers": [
26+
{
27+
"name": "Brian Cavalier",
28+
"web": "http://hovercraftstudios.com"
29+
},
30+
{
31+
"name": "John Hann",
32+
"web": "http://unscriptable.com"
33+
}
34+
],
35+
"contributors": [
36+
{
37+
"name": "Brian Cavalier",
38+
"web": "http://hovercraftstudios.com"
39+
},
40+
{
41+
"name": "John Hann",
42+
"web": "http://unscriptable.com"
43+
},
44+
{
45+
"name": "Scott Andrews"
46+
}
47+
],
48+
"devDependencies": {
49+
"promises-aplus-tests": "~2",
50+
"benchmark": "~1",
51+
"microtime": "~0",
52+
"browserify": "~2",
53+
"buster": "~0.7",
54+
"jshint": "~2",
55+
"rest": "1.1.x",
56+
"optimist": "~0.6",
57+
"poly": "^0.6.1",
58+
"sauce-connect-launcher": "~0.4",
59+
"wd": "~0.2",
60+
"json5": "~0.2"
61+
},
62+
"main": "when",
63+
"ender": {
64+
"files": [
65+
"*.js",
66+
"lib/*.js",
67+
"node/*.js",
68+
"unfold/*.js",
69+
"monitor/*.js",
70+
"lib/decorators/*.js"
71+
]
72+
},
73+
"browser": {
74+
"vertx": false
75+
},
76+
"directories": {
77+
"test": "test"
78+
},
79+
"scripts": {
80+
"test": "jshint . && buster-test -e node && promises-aplus-tests test/promises-aplus-adapter.js",
81+
"build-browser-test": "browserify ./node_modules/poly/es5.js -o test/browser/es5.js && browserify ./test/*-test.js ./test/**/*-test.js -o test/browser/tests.js -x buster ",
82+
"browser-test": "npm run build-browser-test && buster-static -e browser -p 8080",
83+
"ci": "npm test && node test/sauce.js",
84+
"tunnel": "node test/sauce.js -m",
85+
"start": "buster-static -e browser",
86+
"benchmark": "node benchmark/promise && node benchmark/map",
87+
"browserify-es6": "browserify -s Promise es6-shim/Promise.browserify-es6.js --no-detect-globals -o es6-shim/Promise.js",
88+
"browserify": "browserify -s when build/when.browserify.js --no-detect-globals -o build/when.js",
89+
"browserify-debug": "browserify -s when build/when.browserify-debug.js --no-detect-globals -o build/when.js"
90+
}
8291
}

0 commit comments

Comments
 (0)