forked from caremesh/fhirpatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 851 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
{
"name": "fhirpatch",
"version": "1.1.16",
"description": "Implementation of FHIR Patch for Javascript",
"main": "src/index.js",
"repository": "https://github.com/caremesh/fhirpatch",
"author": "JP Narkinsky <[email protected]>",
"license": "BSD-3-Clause",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"jit-grunt": "^0.10.0",
"mocha": "^8.3.2"
},
"dependencies": {
"array-move": "^3.0.1",
"date-fns": "^2.21.1",
"fhir": "^4.8.2",
"fhirpath": "^2.7.4"
},
"scripts": {
"prepublish": "yarn mocha; yarn eslint",
"regenerate-tests": "saxonb-xslt test/fhir-patch-tests.xml test/fhirpatch.xml | tail -n +2 > test/fhirpatch.test.js; eslint --fix test/fhirpatch.test.js",
"test": "mocha"
},
"engines": {
"node": ">=10"
}
}