-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "lamp-core",
"version": "2.0.1",
"author": "BIDMC Division of Digital Psychiatry <[email protected]>",
"description": "The JavaScript and TypeScript API client for the LAMP Platform.",
"homepage": "https://docs.lamp.digital/",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/BIDMCDigitalPsychiatry/LAMP-js.git"
},
"bugs": {
"url": "https://github.com/BIDMCDigitalPsychiatry/LAMP-js/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"lamp": "cli.js"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"jose": "^5.8.0",
"jsonata": "^1.8.4",
"url-search-params-polyfill": "^7.0.0"
},
"devDependencies": {
"@types/node": "^13.11.1",
"source-map-support": "^0.5.16",
"typescript": "^3.7.0"
},
"scripts": {
"start": "tsc-watch --onSuccess \"node -r source-map-support/register ./dist/index.js\"",
"build": "tsc",
"prepublishOnly": "tsc",
"test": "echo \"No tests to run...\" && exit 0"
},
"prettier": {
"semi": false,
"printWidth": 120
},
"directories": {
"doc": "docs"
}
}