UNPKG

2.31 kBJSONView Raw
1{
2 "name": "when",
3 "version": "3.4.2",
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 "licenses": [
20 {
21 "type": "MIT",
22 "url": "http://www.opensource.org/licenses/mit-license.php"
23 }
24 ],
25 "repository": {
26 "type": "git",
27 "url": "https://github.com/cujojs/when"
28 },
29 "bugs": "https://github.com/cujojs/when/issues",
30 "maintainers": [
31 {
32 "name": "Brian Cavalier",
33 "web": "http://hovercraftstudios.com"
34 },
35 {
36 "name": "John Hann",
37 "web": "http://unscriptable.com"
38 }
39 ],
40 "contributors": [
41 {
42 "name": "Brian Cavalier",
43 "web": "http://hovercraftstudios.com"
44 },
45 {
46 "name": "John Hann",
47 "web": "http://unscriptable.com"
48 },
49 {
50 "name": "Scott Andrews"
51 }
52 ],
53 "devDependencies": {
54 "promises-aplus-tests": "~2",
55 "benchmark": "~1",
56 "microtime": "~0",
57 "browserify": "~2",
58 "buster": "~0.7",
59 "jshint": "~2",
60 "rest": "1.1.x",
61 "optimist": "~0.6",
62 "sauce-connect-launcher": "~0.4",
63 "wd": "~0.2",
64 "json5": "~0.2",
65 "poly": "git://github.com/cujojs/poly#0.6.0"
66 },
67 "main": "when",
68 "ender": { "files": ["*.js", "lib/*.js", "node/*.js", "unfold/*.js", "monitor/*.js"] },
69 "directories": {
70 "test": "test"
71 },
72 "scripts": {
73 "test": "jshint . && buster-test -e node && promises-aplus-tests test/promises-aplus-adapter.js",
74 "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 ",
75 "browser-test": "npm run build-browser-test && buster-static -e browser -p 8080",
76 "ci": "npm test && node test/sauce.js",
77 "tunnel": "node test/sauce.js -m",
78 "start": "buster-static -e browser",
79 "benchmark": "node benchmark/promise && node benchmark/map",
80 "browserify-es6": "browserify -s Promise es6-shim/Promise.browserify-es6.js --no-detect-globals -o es6-shim/Promise.js",
81 "browserify": "browserify -s when build/when.browserify.js --no-detect-globals -o build/when.js",
82 "browserify-debug": "browserify -s when build/when.browserify-debug.js --no-detect-globals -o build/when.js"
83 }
84}