elationjs
Version:
A node SDK for interacting with the Elation Health API
56 lines (55 loc) • 1.4 kB
JSON
{
"name": "elationjs",
"version": "1.0.10",
"description": "A node SDK for interacting with the Elation Health API",
"main": "dist/index.js",
"repository": "pdeona/elation-health.js",
"scripts": {
"precommit": "lint-staged",
"format": "prettier --write \"src/**/*{.js, .json}\"",
"prebuild": "rimraf \"dist/\"",
"build": "babel \"src/\" --out-dir \"dist/\" --copy-files",
"postbuild": "flow-copy-source src -v dist",
"prepublish": "npm run build"
},
"author": "Pedro De Ona",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^5.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"flow-bin": "^0.75.0",
"jest": "^23.4.1",
"prettier": "^1.13.5",
"rimraf": "^2.6.2"
},
"engines": {
"node": "^8.0.0",
"yarn": "^1.7.0"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"keywords": [
"elation health",
"elation api",
"elation",
"ehr"
],
"resolutions": {
"eslint-scope": "3.7.1"
},
"dependencies": {
"axios": "^0.18.0",
"query-string": "^6.1.0"
}
}