-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "horticulturalist",
"version": "0.13.1",
"description": "A fancy gardener",
"repository": "https://github.com/medic/horticulturalist",
"license": "Apache-2.0",
"main": "src/index.js",
"bin": {
"horti": "src/index.js",
"horti-svc-start": "bin/svc-start",
"horti-svc-stop": "bin/svc-stop"
},
"scripts": {
"start": "node src/index.js --dev",
"eslint": "eslint src/**/* tests/**/*",
"test": "npm run eslint && npm run unit-tests && npm run int-tests",
"unit-tests": "TESTING=1 mocha ./tests/unit/**.js",
"int-tests": "mocha --full-trace -s 10000 -t 65536 ./tests/int/tests/**.js"
},
"dependencies": {
"debug": "^3.1.0",
"decompress": "^4.2.0",
"fs-extra": "^3.0.1",
"minimist": "^1.2.0",
"pouchdb-adapter-http": "^7.0.0",
"pouchdb-core": "^7.0.0",
"pouchdb-mapreduce": "^7.0.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"signal-exit": "^3.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.12.1",
"medic-builds-repo": "^0.3.0",
"mocha": "^5.2.0",
"sinon": "^7.2.5"
}
}