-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "antidote-rest-server",
"version": "0.10.0",
"description": "An HTTP/HTTPS REST API for AntidoteDB",
"main": "index.js",
"scripts": {
"start": "coffee src/start.litcoffee",
"pretest": "coffeelint ./**/*.litcoffee",
"test": "mocha --require coffeescript/register test/**/*.litcoffee --exit",
"prepublishOnly": "cake build"
},
"bin": "bin/antidote-rest-server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/joaomlneto/antidote-rest-server.git"
},
"author": "João Neto <joao@neto.pt> (joao.neto.pt)",
"bugs": {
"url": "https://github.com/joaomlneto/antidote-rest-server/issues"
},
"license": "MIT",
"homepage": "https://github.com/joaomlneto/antidote-rest-server",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"antidote_ts_client": ">=0.2.2",
"express": ">=4.17.0",
"nconf": ">=0.10.0"
},
"devDependencies": {
"chai": ">=4.1.2",
"chai-http": ">=4.2.0",
"coffeelint": ">=2.0.7",
"mocha": ">=6.1.1"
}
}