-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "baresoil-devenv",
"version": "0.2.5",
"description": "Lightweight, local Baresoil Cloud emulator.",
"bin": {
"baresoil-dev": "lib/main.js",
"bs-dev": "lib/main.js"
},
"main": "lib/main.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive --check-leaks test",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/dev test/e2e test/sandbox test/server test/svclib test/svclib/modules test/svclib/modules/KVDataStore test/util"
},
"repository": {
"type": "git",
"url": "https://github.com/iceroad/baresoil-devenv.git"
},
"author": "Mayank Lahiri <mayank@iceroad.io>",
"license": "Apache-2.0",
"dependencies": {
"async": "^2.4.0",
"baresoil-client": "^0.2.4",
"colors": "^1.1.2",
"cookie-parser": "^1.4.3",
"event-io": "^0.1.7",
"express": "^4.15.3",
"fs-extra": "^3.0.1",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.4",
"mime": "^1.3.6",
"minimist": "^1.2.0",
"multer": "^1.3.0",
"request": "^2.81.0",
"runtype": "^0.1.5",
"stream-buffers": "^3.0.1",
"tar-fs": "^1.15.2",
"temp": "^0.8.3",
"validator": "^7.0.0",
"walk": "^2.3.9",
"ws": "^3.0.0"
},
"engines": {
"node": ">=6.10.3"
},
"devDependencies": {
"chai": "^3.5.0",
"depcheck": "^0.6.7",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"sinon": "^2.2.0"
}
}