-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 873 Bytes
/
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
{
"name": "api.calcoola",
"description": "Calcoola RESTful API",
"version": "0.1.0",
"author": "Polad Mirzayev",
"repository": {
"type": "git",
"url": "http://github.com/polad/calcoola.api.git"
},
"dependencies": {
"body-parser": "^1.14.1",
"express": "^4.13.3",
"migrate": ">=0.1.4",
"rethinkdb": ">=1.11.0",
"when": ">=3.1.0"
},
"devDependencies": {
"chai": "^3.4.1",
"chalk": "^1.1.1",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
},
"engines": {
"node": ">=4.1.1"
},
"scripts": {
"start": "node ./src/app/server.js",
"test": "npm run test-node-unit",
"test-node-unit": "node_modules/.bin/mocha --require ./src/tests/globals.js --recursive ./src/tests/unit"
},
"bugs": {
"url": "https://github.com/polad/calcoola.api/issues"
},
"main": "server.js",
"license": "BSD-2-Clause"
}