forked from bluehalo/node-fhir-server-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.75 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": "@projecttacoma/node-fhir-server-core-project",
"private": false,
"version": "2.0.12",
"description": "Node FHIR Rest API Server and surrounding ecosystem",
"homepage": "https://github.com/projecttacoma/node-fhir-server-core#readme",
"bugs": {
"url": "https://github.com/projecttacoma/node-fhir-server-core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projecttacoma/node-fhir-server-core.git"
},
"license": "MIT",
"author": "Asymmetrik Ltd.",
"contributors": [
"Robert Winterbottom <[email protected]>",
"Jon Lee <[email protected]>",
"Sumeet Shah <[email protected]>",
"Shane O'Neill <[email protected]>"
],
"main": "src/index",
"scripts": {
"lerna": "lerna",
"test": "lerna run test",
"bootstrap": "lerna bootstrap",
"prettier-check": "prettier --check \"**/*.{js,mjs,cjs,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,less,graphql,graphqls,gql}\"",
"prettier-fix": "prettier --write \"**/*.{js,mjs,cjs,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,less,graphql,graphqls,gql}\"",
"lint": "run-p prettier-check lint-eslint",
"lint-staged": "lint-staged",
"lint-eslint": "eslint . --ext js,jsx,ts,tsx",
"snyk": "snyk",
"snyk-test": "snyk test --all-projects"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/src/server/resources/"
],
"coverageReporters": [
"text",
"lcov",
"json"
],
"verbose": true
},
"devDependencies": {
"eslint": "^7.9.0",
"jest-cli": "^26.4.2",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"snyk": "^1.749.0"
},
"engines": {
"node": ">=10.13.0"
}
}