-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "childminder",
"version": "1.1.2",
"description": "Promise based child process manager for development",
"main": "lib/childminder.js",
"typings": "lib/childminder.d.ts",
"scripts": {
"prepublish": "tsd install && gulp build",
"start": "gulp test:watch",
"test": "npm run clean && gulp test",
"clean": "rimraf lib .test",
"deploy": "npm test && npm publish"
},
"author": "Giff Song <[email protected]>",
"license": "MIT",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/pawsong/childminder.git"
},
"keywords": [
"nodemon",
"monitor",
"development",
"restart",
"reload",
"terminal",
"process",
"promise",
"bluebird"
],
"dependencies": {
"bluebird": "^3.1.1",
"byline": "^4.2.1",
"cli-color": "^1.1.0",
"object-assign": "^4.0.1",
"pty.js": "^0.3.0",
"through2": "^2.0.0"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint-config-airbnb": "^2.1.1",
"event-stream": "^3.3.2",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^1.1.1",
"gulp-mocha": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^4.2.2",
"gulp-typescript": "^2.10.0",
"gulp-util": "^3.0.7",
"is-running": "^2.0.0",
"memorystream": "^0.3.1",
"rimraf": "^2.5.0",
"run-sequence": "^1.1.5",
"sinon": "^1.17.2",
"source-map-support": "^0.4.0",
"tsd": "^0.6.5",
"tslint": "^3.2.1",
"typescript": "^1.7.5"
}
}