-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "MoDEL-CNS_REST_API",
"version": "0.0.1",
"description": "MoDEL-CNS REST API",
"main": "index.js",
"private": true,
"scripts": {
"start": "npm-run-all --silent --print-label --parallel asbuild:watch server:watch",
"build": "npm run asbuild:optimized",
"server:watch": "nodemon --inspect --ext js,json,yml index.js",
"serve": "node index.js",
"lint": "eslint '**/*.js'",
"test": "jest",
"prettier": "prettier --write",
"coverage": "npm run test -- --coverage --collectCoverageFrom='**/*.js' --collectCoverageFrom='!coverage/**'",
"asbuild:untouched": "asc assembly/index.ts -b build/untouched.wasm -t build/untouched.wat --sourceMap --validate --importMemory --debug",
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --sourceMap --validate --importMemory --optimize",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"asbuild:watch": "nodemon --watch assembly --ext ts --exec \"npm run asbuild\""
},
"repository": {
"type": "git",
"url": "[git@mmb.pcb.ub.es:22123]:aluciani/MoDEL-CNS_REST_API.git"
},
"keywords": [
"model",
"model-cns",
"central nervous system",
"membrane",
"structure",
"simulation",
"trajectory",
"hbp",
"Human Brain Project"
],
"author": "Aurélien Luciani <aurelien.luciani@irbbarcelona.org>",
"license": "ISC",
"dependencies": {
"assemblyscript": "0.8.0",
"boxen": "4.1.0",
"chalk": "2.4.2",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-paginate": "1.0.0",
"jsdom": "15.2.1",
"lodash": "4.17.15",
"mongodb": "3.3.3",
"ngl": "0.10.4",
"range-parser": "1.2.1",
"swagger-ui-express": "4.1.2",
"yamljs": "0.3.0"
},
"devDependencies": {
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"mongodb-memory-server": "6.0.1",
"nodemon": "1.19.4",
"npm-run-all": "4.1.5",
"pm2": "4.1.2",
"prettier": "1.18.2",
"timing-functions": "1.0.0"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write",
"git add"
],
"*.{js,mjs}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"jest": {
"coverageReporters": [
"text-summary",
"html"
],
"collectCoverageFrom": [
"src/**/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "CI=true npm test -- --coverage"
}
}
}