-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.12 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.12 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "cms-bluebutton-sdk",
"version": "1.0.8",
"description": "An sdk used for interacting with the CMS Blue Button 2.0 API",
"main": "dist/cms-bluebutton-sdk.cjs.js",
"module": "dist/cms-bluebutton-sdk.esm.js",
"browser": "dist/cms-bluebutton-sdk.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"build:types": "tsc -p ./tsconfig.json --outDir build --declaration true && api-extractor run",
"docs": "typedoc",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"jest": {
"preset": "ts-jest",
"verbose": true,
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx)"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest"
},
"moduleNameMapper": {
"^axios$": "axios/dist/node/axios.cjs"
}
},
"keywords": [
"bb2",
"cms",
"medicare",
"claims"
],
"author": "blue button API appDev",
"license": "CC0-1.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"http-status-codes": "^2.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.2.2",
"prettier": "2.5.1",
"rollup": "^2.64.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.6.4"
},
"dependencies": {
"@microsoft/api-extractor": "^7.57.7",
"axios": "^1.15.0",
"babel-jest": "^27.5.1",
"cms-bluebutton-sdk": "^1.0.8",
"moment": "^2.29.4",
"typedoc": "^0.23.0"
},
"overrides": {
"inflight": "npm:inflight-lru@^1.0.0",
"ajv": "^8.18.0",
"@isaacs/brace-expansion": "^5.0.1",
"minimatch": "^10.2.3"
},
"resolutions": {
"test-exclude/minimatch": "^9.0.4"
}
}