-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.12 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
{
"name": "@d4l/js-fhir-validator",
"version": "1.0.5",
"description": "Runtime FHIR Validator",
"main": "index.js",
"scripts": {
"test": "jest __tests__/r4 --runInBand; jest __tests__/stu3 --runInBand",
"build": "npm run build:r4; npm run build:index; npm run build:stu3; npm run compress-files",
"build:index": "npx ajv compile -s fhir.schema.v401.json -o index.js",
"build:test": "node ./scripts/generate-test-scripts.js",
"build:stu3": "npm run build-json-files -- stu3; npm run generate-validator-scripts -- stu3",
"build:r4": "npm run build-json-files; npm run generate-validator-scripts",
"build-json-files": "node ./scripts/build-json-files.js",
"compress-files": "node ./scripts/compress-files.js",
"generate-validator-scripts": "node ./scripts/generate-validator-scripts.js"
},
"dependencies": {
"ajv": "^8.0.3",
"terser": "^5.3.8"
},
"devDependencies": {
"jest": "^26.6.1",
"prettier": "^1.19.1"
},
"files": [
"index.js",
"stu3",
"r4"
],
"author": "",
"license": "MIT",
"repository": "git://github.com/d4l-data4life/js-fhir-validator.git"
}