forked from HumanCellAtlas/ingest-validator-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1021 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
41
{
"name": "elixir-jsonschema-validator",
"version": "2.0.0",
"description": "Custom JSON-Schema keywords for Ajv validator and validation service with API",
"main": "index.js",
"repository": "https://github.com/elixir-europe/json-schema-validator.git",
"scripts": {
"start": "node src/server.js",
"test": "jest -i",
"test-watch": "nodemon --exec \"npm test\"",
"travis-test": "jest test/elixir-validator.test.js"
},
"engines": {
"node": "10.16.3"
},
"keywords": [
"nodejs",
"biojs",
"json",
"schema",
"validator"
],
"author": "EMBL-EBI-SUBS, fpenim, rolando-ebi, simonjupp, ke4",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^6.10.2",
"bluebird": "^3.5.1",
"request-promise": "^4.2.4",
"winston": "^3.0.0-rc6",
"winston-daily-rotate-file": "^3.2.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"jest": "24.9.0",
"nodemon": "^1.18.6"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}