-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 910 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
{
"name": "cds-validator",
"version": "1.0.0-rc.1",
"description": "A card validator to evaluate CDS payloads.",
"main": "index.js",
"scripts": {
"test": "mocha && eslint .",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git@github.com:cds-hooks/cds-validator.git"
},
"keywords": [
"hl7",
"fhir",
"json",
"validator",
"cds-hooks"
],
"author": "Matt Berther",
"license": "MIT",
"bugs": {
"url": "https://github.com/cds-hooks/cds-validator/issues"
},
"homepage": "https://github.com/cds-hooks/cds-validator#readme",
"dependencies": {
"bluebird": "3.3.5",
"jsonschema": "1.2.0"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"eslint": "^4.16.0",
"eslint-config-xo": "^0.19.0",
"mocha": "2.4.5"
}
}