forked from HL7/fhirpath.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.18 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
{
"name": "fhirpath",
"version": "3.3.1",
"description": "A FHIRPath engine",
"main": "src/fhirpath.js",
"dependencies": {
"@lhncbc/ucum-lhc": "^4.1.3",
"antlr4": "~4.9.3",
"commander": "^2.18.0",
"date-fns": "^1.30.1",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"benny": "^3.7.1",
"bestzip": "^2.2.0",
"copy-webpack-plugin": "^6.0.3",
"cypress": "^10.3.0",
"eslint": "^8.10.0",
"fhir": "^4.10.3",
"grunt": "^1.5.2",
"grunt-cli": "^1.4.3",
"grunt-text-replace": "^0.4.0",
"jasmine-spec-reporter": "^4.2.1",
"jest": "^27.3.1",
"jit-grunt": "^0.10.0",
"lodash": "^4.17.21",
"open": "^8.4.0",
"rimraf": "^3.0.0",
"tmp": "0.0.33",
"webpack": "^5.11.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.9.1",
"xml2js": "^0.4.19",
"yargs": "^15.1.0"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"generateParser": "cd src/parser; rimraf ./generated/*; java -Xmx500M -cp \"../../antlr-4.9.3-complete.jar:$CLASSPATH\" org.antlr.v4.Tool -o generated -Dlanguage=JavaScript FHIRPath.g4; grunt updateParserRequirements",
"build": "cd browser-build && webpack && rimraf fhirpath.zip && bestzip fhirpath.zip LICENSE.md fhirpath.min.js fhirpath.r4.min.js fhirpath.stu3.min.js fhirpath.dstu2.min.js && rimraf LICENSE.md",
"test:unit": "jest && TZ=America/New_York jest && TZ=Europe/Paris jest",
"test:unit:debug": "echo 'open chrome chrome://inspect/' && node --inspect node_modules/.bin/jest --runInBand",
"build:demo": "npm run build && cd demo && npm run build",
"test:e2e": "npm run build:demo && cypress run",
"test": "npm run lint && npm run test:unit && npm run test:e2e && echo \"For tests specific to IE 11, open browser-build/test/index.html in IE 11, and confirm that the tests on that page pass.\"",
"lint": "eslint src/parser/index.js src/*.js converter/",
"compare-performance": "node ./test/benchmark.js"
},
"bin": {
"fhirpath": "bin/fhirpath"
},
"repository": "github:HL7/fhirpath.js",
"license": "MIT"
}