forked from tryterra/terra-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1000 Bytes
/
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
{
"name": "terra-api",
"version": "1.1.2",
"description": "Terra Javascript Package",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"homepage": "https://docs.tryterra.co/docs/js-project",
"bugs": {
"url" : "https://github.com/tryterra/terra-client-js/issues",
"email" : "[email protected]"
},
"files": [
"lib/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build": "rm -rf lib && npm run tsc",
"docs": "typedoc src/API/**.ts src/models/enums/**.ts src/models/samples/**.ts src/models/**.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/tryterra/terra-client-js"
},
"keywords": [
"Terra",
"Healthcare",
"Fitness"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.13",
"typescript": "^4.5.5",
"typedoc": "^0.23.10"
},
"dependencies": {
"cross-fetch": "^3.1.5"
}
}