-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 877 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
37
38
39
40
{
"name": "cff",
"version": "1.0.0",
"description": "The code interview bootcamp: Algorithms + Datastructures",
"main": "no",
"jest": {
"collectCoverageFrom": [
"topics/*"
],
"testPathIgnorePatterns": [
"template/*"
]
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"solve-problem": "sh init.sh ",
"finish": "sh finish.sh "
},
"repository": {
"type": "git",
"url": "git+https://github.com/thanhnguyennguyen/cff.git"
},
"keywords": [
"code",
"interview",
"nguyennguyen",
"cff"
],
"author": "NguyenNguyen (nguyenbk92@gmail.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/thanhnguyennguyen/cff/issues"
},
"homepage": "https://github.com/thanhnguyennguyen/cff#readme",
"dependencies": {
"fast-csv": "^4.3.6",
"mongodb": "^3.1.13"
}
}