UNPKG

1.84 kBJSONView Raw
1{
2 "name": "q",
3 "version": "1.5.1",
4 "description": "A library for promises (CommonJS/Promises/A,B,D)",
5 "homepage": "https://github.com/kriskowal/q",
6 "author": "Kris Kowal <kris@cixar.com> (https://github.com/kriskowal)",
7 "keywords": [
8 "q",
9 "promise",
10 "promises",
11 "promises-a",
12 "promises-aplus",
13 "deferred",
14 "future",
15 "async",
16 "flow control",
17 "fluent",
18 "browser",
19 "node"
20 ],
21 "contributors": [
22 "Kris Kowal <kris@cixar.com> (https://github.com/kriskowal)",
23 "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
24 "Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)"
25 ],
26 "bugs": {
27 "mail": "kris@cixar.com",
28 "url": "http://github.com/kriskowal/q/issues"
29 },
30 "license": "MIT",
31 "main": "q.js",
32 "files": [
33 "LICENSE",
34 "q.js",
35 "queue.js"
36 ],
37 "repository": {
38 "type": "git",
39 "url": "git://github.com/kriskowal/q.git"
40 },
41 "engines": {
42 "node": ">=0.6.0",
43 "teleport": ">=0.2.0"
44 },
45 "dependencies": {},
46 "devDependencies": {
47 "cover": "*",
48 "grunt": "~0.4.1",
49 "grunt-cli": "~0.1.9",
50 "grunt-contrib-uglify": "~0.9.1",
51 "jasmine-node": "1.11.0",
52 "jshint": "~2.1.9",
53 "matcha": "~0.2.0",
54 "opener": "*",
55 "promises-aplus-tests": "1.x"
56 },
57 "scripts": {
58 "test": "npm ls -s && jasmine-node spec && promises-aplus-tests spec/aplus-adapter && npm run -s lint",
59 "test-browser": "opener spec/q-spec.html",
60 "benchmark": "matcha",
61 "lint": "jshint q.js",
62 "cover": "cover run jasmine-node spec && cover report html && opener cover_html/index.html",
63 "minify": "grunt",
64 "prepublish": "grunt"
65 },
66 "overlay": {
67 "teleport": {
68 "dependencies": {
69 "system": ">=0.0.4"
70 }
71 }
72 },
73 "directories": {
74 "test": "./spec"
75 }
76}