-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "biovalidator",
"version": "2.2.2",
"description": "A nodejs JSON schema validator, extended from Ajv to include ontology validation.",
"main": "src/biovalidator.js",
"bin": {
"biovalidator": "src/biovalidator.js"
},
"repository": "https://github.com/elixir-europe/biovalidator.git",
"scripts": {
"start": "node src/biovalidator.js",
"test": "jest",
"test-watch": "nodemon --exec \"npm test\"",
"travis-test": "jest test/validator.test.js"
},
"engines": {
"node": ">=10.19.1"
},
"keywords": [
"nodejs",
"json",
"schema",
"validator"
],
"author": "EMBL-EBI-AIT, fpenim, ke4, haseeb-gh, theisuru",
"license": "Apache-2.0",
"dependencies": {
"ajv": "8.12.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "2.1.1",
"axios": "^1.3.2",
"express": "^4.17.1",
"glob": "^8.0.3",
"node-cache": "^5.1.2",
"npid": "^0.4.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"bufferutil": "^4.0.2",
"jest": "^26.6.0",
"nodemon": "^2.0.6",
"supertest": "^6.3.3",
"ts-node": "^9.1.0",
"typescript": "^4.1.2",
"utf-8-validate": "^5.0.3"
},
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
},
"testEnvironment": "node"
}
}