forked from step-batch-7/todo-trinangkur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "todo-trinangkur",
"version": "1.0.0",
"description": "",
"main": "server.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "export DATA_STORE=$(pwd)/test/testTodoList.json;export USER_STORE=$(pwd)/test/testUser.json; mocha",
"start": "export DATA_STORE=$(pwd)/data/todoList.json;export USER_STORE=$(pwd)/data/user.json; node server.js",
"coverage": "export DATA_STORE=$(pwd)/test/testTodoList.json;export USER_STORE=$(pwd)/test/testUser.json; nyc mocha",
"testCi": "export DATA_STORE=$(pwd)/test/testTodoList.json;export USER_STORE=$(pwd)/test/testUser.json; mocha --reporter json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/step-batch-7/todo-trinangkur.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/step-batch-7/todo-trinangkur/issues"
},
"homepage": "https://github.com/step-batch-7/todo-trinangkur#readme",
"dependencies": {
"cookie-parser": "^1.4.4",
"express": "^4.17.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"sinon": "^8.1.1",
"supertest": "^4.0.2"
}
}