-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 988 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
{
"name": "fhir-mapper",
"version": "3.2.0",
"contributors": [
"Rob Dingwell <[email protected]>",
"Matthew Gramigna <[email protected]>",
"Dylan Hall <[email protected]>",
"Dylan Phelan <[email protected]>"
],
"main": "src/index.js",
"repository": "[email protected]:standardhealth/fhir-mapper.git",
"author": "Matthew Gramigna <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint \"src/**/*.js\"",
"test": "jest --forceExit",
"webpack": "webpack",
"watch": "webpack --watch",
"map": "node src/cli.js"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"eslint": "^5.15.1",
"jest": "^24.8.0",
"rewire": "4.0.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"crypto": "^1.0.1",
"fhirpath": "3.8.1",
"lodash": "^4.17.21"
}
}