-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "fhir-kit-smart-messaging",
"version": "0.0.1",
"description": "SMART Messaging",
"keywords": [
"FHIR",
"SMART",
"SMART Messaging",
"CDS Hooks",
"HL7"
],
"author": "Vermonster",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Vermonster/fhir-kit-smart-messaging.git"
},
"scripts": {
"start": "(cd dev && node server.js)",
"clean": "rimraf dist",
"test": "jest src",
"test:watch": "jest src --watch --notify",
"cover": "jest src --coverage",
"lint": "eslint src",
"build": "rollup -c",
"precommit": "lint && yarn test",
"prepublishOnly": "clean && lint && test && build"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-rewire": "^1.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"express": "^4.17.0",
"jest": "^24.8.0",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-node-resolve": "^5.0.0"
}
}