-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "@klippa/dochorizon-sdk",
"version": "1.0.4",
"description": "## NodeJS developer SDK for DocHorizon.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^19.6.1"
},
"scripts": {
"test-local": "jest --testPathPattern=test/LocalTests",
"test": "jest --testPathPattern=test/TotalTests",
"build": "tsc",
"copy-api": "cp api.json ./dist",
"update-api": "ts-node getSwagger.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/klippa-app/js-dochorizon-sdk"
},
"keywords": [],
"author": {
"name": "Jeroen Bobbeldijk",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"depcheck": "^1.4.7",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.3.2",
"i18n-iso-countries": "^7.10.0",
"js-yaml": "^4.1.0"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}