UNPKG

1.43 kBJSONView Raw
1{
2 "name": "child-process-promise",
3 "description": "Simple wrapper around the \"child_process\" module that makes use of promises",
4 "main": "./index.js",
5 "files": [
6 "lib",
7 "lib-es5",
8 "Readme.md"
9 ],
10 "scripts": {
11 "lint": "eslint lib/*js test/*js",
12 "test": "npm run mocha",
13 "mocha": "mocha --ui bdd --reporter spec ./test/",
14 "prepublish": "babel lib --out-dir lib-es5"
15 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/patrick-steele-idem/child-process-promise.git"
19 },
20 "keywords": [
21 "child",
22 "process",
23 "promises"
24 ],
25 "author": "Patrick Steele-Idem <pnidem@gmail.com>",
26 "license": "MIT",
27 "bugs": {
28 "url": "https://github.com/patrick-steele-idem/child-process-promise/issues"
29 },
30 "publishConfig": {
31 "registry": "http://registry.npmjs.org/"
32 },
33 "dependencies": {
34 "cross-spawn": "^4.0.2",
35 "node-version": "^1.0.0",
36 "promise-polyfill": "^6.0.1"
37 },
38 "devDependencies": {
39 "babel-cli": "^6.11.4",
40 "babel-plugin-check-es2015-constants": "^6.8.0",
41 "babel-plugin-transform-es2015-block-scoping": "^6.10.1",
42 "babel-preset-es2015": "^6.13.2",
43 "chai": "^3.5.0",
44 "eslint": "^0.10.2",
45 "jshint": "^2.9.1",
46 "mocha": "^2.4.5"
47 },
48 "version": "2.2.1",
49 "babel": {
50 "presets": [
51 "es2015"
52 ],
53 "plugins": [
54 "check-es2015-constants",
55 "transform-es2015-block-scoping"
56 ]
57 }
58}