UNPKG

2.08 kBJSONView Raw
1{
2 "name": "promise-toolbox",
3 "version": "0.6.0",
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": "^7.0.0",
39 "babel-preset-babili": "^0.0.5",
40 "babel-preset-latest": "^6.16.0",
41 "babel-preset-stage-0": "^6.3.13",
42 "clarify": "^2.0.0",
43 "dependency-check": "^2.5.1",
44 "ghooks": "^1.3.2",
45 "julien-f-source-map-support": "0.0.0",
46 "mocha": "^3.0.0",
47 "must": "^0.13.1",
48 "native-promise-only": "^0.8.1",
49 "sinon": "^1.17.2",
50 "standard": "^8.0.0",
51 "trace": "^2.0.1"
52 },
53 "scripts": {
54 "build": "NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
55 "depcheck": "dependency-check ./package.json",
56 "dev": "NODE_DEV=development babel --watch --source-maps --out-dir=dist/ src/",
57 "dev-test": "mocha --opts .mocha.opts --watch --reporter=min \"dist/**/*.spec.js\"",
58 "lint": "standard",
59 "posttest": "npm run lint && npm run depcheck",
60 "prepublish": "npm run build",
61 "test": "mocha --opts .mocha.opts \"dist/**/*.spec.js\""
62 },
63 "babel": {
64 "env": {
65 "production": {
66 "comments": false,
67 "presets": [
68 "babili"
69 ]
70 }
71 },
72 "presets": [
73 "latest",
74 "stage-0"
75 ]
76 },
77 "standard": {
78 "ignore": [
79 "dist"
80 ],
81 "parser": "babel-eslint"
82 },
83 "config": {
84 "ghooks": {
85 "commit-msg": "npm test"
86 }
87 }
88}