-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "xealth-partner-sample-code",
"version": "1.2.0",
"description": "Sample code for Xealth Partner API",
"main": "./lib/index.js",
"private": true,
"files": [
"lib/"
],
"scripts": {
"audit-checker": "check-audit --production",
"audit-resolver": "resolve-audit --production",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions .ts --source-maps inline",
"lint": "eslint --cache --ext .ts ./",
"postinstall": "./copy-skel-config",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"repository": "github:Xealth/xealth-partner-sample-code",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"http-status-codes": "^1.4.0",
"lodash": "^4.17.20",
"moment": "^2.29.2",
"read-yaml": "^1.1.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"yargs": "^17.3.1"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/chalk": "^2.2.0",
"@types/lodash": "^4.14.180",
"@types/request-promise": "^4.1.48",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^6.8.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"npm-audit-resolver": "^2.3.1",
"typescript": "^3.9.10"
}
}