UNPKG

1.79 kBJSONView Raw
1{
2 "name": "promise-toolbox",
3 "version": "0.5.1",
4 "license": "ISC",
5 "description": "Essential utils for promises",
6 "keywords": [
7 "promise",
8 "utils",
9 "promisify",
10 "promisification",
11 "thenify",
12 "thenification"
13 ],
14 "homepage": "https://github.com/JsCommunity/promise-toolbox",
15 "bugs": "https://github.com/JsCommunity/promise-toolbox/issues",
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/JsCommunity/promise-toolbox"
19 },
20 "author": {
21 "name": "Julien Fontanet",
22 "email": "julien.fontanet@isonoe.net"
23 },
24 "preferGlobal": false,
25 "main": "dist/",
26 "bin": {},
27 "files": [
28 "dist/"
29 ],
30 "engines": {
31 "node": ">=0.12"
32 },
33 "dependencies": {
34 "make-error": "^1.0.4"
35 },
36 "devDependencies": {
37 "babel-cli": "^6.3.17",
38 "babel-eslint": "^6.0.0",
39 "babel-plugin-transform-runtime": "^6.3.13",
40 "babel-preset-es2015": "^6.3.13",
41 "babel-preset-stage-0": "^6.3.13",
42 "clarify": "^2.0.0",
43 "dependency-check": "^2.5.1",
44 "julien-f-source-map-support": "0.0.0",
45 "mocha": "^3.0.0",
46 "must": "^0.13.1",
47 "native-promise-only": "^0.8.1",
48 "nyc": "^8.1.0",
49 "sinon": "^1.17.2",
50 "standard": "^7.0.0",
51 "trace": "^2.0.1"
52 },
53 "scripts": {
54 "build": "babel --source-maps --out-dir=dist/ src/",
55 "dev": "babel --watch --source-maps --out-dir=dist/ src/",
56 "dev-test": "mocha --opts .mocha.opts --watch --reporter=min \"dist/**/*.spec.js\"",
57 "lint": "standard",
58 "depcheck": "dependency-check ./package.json",
59 "posttest": "npm run lint && npm run depcheck",
60 "prepublish": "npm run build",
61 "test": "nyc mocha --opts .mocha.opts \"dist/**/*.spec.js\""
62 },
63 "standard": {
64 "ignore": [
65 "dist/**"
66 ],
67 "parser": "babel-eslint"
68 }
69}