-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 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
69
{
"name": "juttle-service",
"version": "0.5.0",
"description": "API-based execution engine for juttle programs",
"main": "index",
"bin": {
"juttle-service": "bin/juttle-service",
"juttle-service-client": "bin/juttle-service-client",
"juttle": "bin/juttle"
},
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juttle/juttle-service.git"
},
"keywords": [
"juttle",
"api",
"express",
"subprocess"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/juttle/juttle-service/issues"
},
"homepage": "https://github.com/juttle/juttle-service#readme",
"dependencies": {
"CBuffer": "^1.1.1",
"bluebird": "^3.2.1",
"body-parser": "^1.14.2",
"compression": "^1.6.1",
"cors": "^2.7.1",
"daemon": "^1.1.0",
"double-ended-queue": "^0.9.7",
"express": "^4.13.4",
"express-ws": "^1.0.0-rc.2",
"fs-extra": "^0.26.5",
"juttle": "^0.7.0",
"juttle-jsdp": "^0.3.0",
"log4js": "^0.6.30",
"minimist": "^1.2.0",
"moment": "^2.11.1",
"request-promise": "^2.0.0",
"sprintf-js": "^1.0.3",
"underscore": "^1.8.3",
"uuid": "^2.0.1",
"ws": "^0.4.31"
},
"devDependencies": {
"bluebird-retry": "^0.5.3",
"chai": "^3.5.0",
"chakram": "^1.2.2",
"find-free-port": "^1.0.2",
"gulp": "^3.9.0",
"gulp-eslint": "^1.1.1",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.1.3",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3"
}
}