-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "model-cns_db_loader",
"version": "0.0.1",
"description": "MoDEL-CNS DB loader",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint '**/*.js'",
"prettier": "prettier --write",
"coverage": "npm run test -- --coverage --collectCoverageFrom='**/*.js' --collectCoverageFrom='!coverage/**'"
},
"repository": {
"type": "git",
"url": "[git@mmb.pcb.ub.es:22123]:aluciani/MoDEL-CNS_DB_loader.git"
},
"author": "Aurélien Luciani <aurelien.luciani@irbbarcelona.org>",
"license": "ISC",
"dependencies": {
"cli-table3": "0.5.1",
"dev-null": "0.1.1",
"dotenv": "8.2.0",
"glob": "^7.2.3",
"lodash.frompairs": "4.0.1",
"lodash.throttle": "4.1.1",
"mongodb": "^5.9.1",
"mongodb-memory-server": "^6.5.2",
"node-fetch": "2.6.0",
"prompt": "1.0.0",
"prompts": "^2.3.2",
"timeago.js": "4.0.0-beta.2",
"timing-functions": "0.2.2",
"yaml": "^2.4.1",
"yargs": "13.2.4"
},
"devDependencies": {
"chalk": "2.4.2",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"jsdom": "15.1.1",
"lint-staged": "8.2.1",
"ngl": "2.0.0-dev.36",
"ora": "3.4.0",
"prettier": "1.18.2",
"pretty-ms": "5.0.0"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write",
"git add"
],
"*.{js,mjs}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}