-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 931 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
{
"name": "todolist_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"pretest": "node src/server.js > /dev/null 2>&1 &",
"test": "node_modules/jasmine-node/bin/jasmine-node test/integration/server_spec.js",
"unit": "mocha --opts test/unit/mocha.opts test/unit/**_spec.js"
},
"dependencies": {
"body-parser": "^1.13.3",
"chai": "^3.5.0",
"express": "^4.13.3",
"frisby": "latest",
"jasmine-node": "latest",
"joi": "^9.0.4",
"mocha": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrro/todoListApi.git"
},
"author": "@pedrro",
"license": "ISC",
"bugs": {
"url": "https://github.com/pedrro/todoListApi/issues"
},
"homepage": "https://github.com/pedrro/todoListApi#readme"
}