-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@hcl-software/domino-rest-sdk-node",
"version": "0.2.1",
"type": "module",
"description": "NodeJS library to interact with a HCL Domino compatible REST API",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"private": false,
"engines": {
"node": ">20.0.0"
},
"files": [
"dist/**/*"
],
"scripts": {
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"build": "tsc && ./fixup.sh",
"prepublish": "npm run build && npm run test",
"start": "node .",
"test": "NODE_OPTIONS='--experimental-loader=@istanbuljs/esm-loader-hook --no-warnings=ExperimentalWarning' nyc --reporter=html --reporter=text mocha",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HCL-TECH-SOFTWARE/domino-rest-sdk-node.git"
},
"keywords": [
"domino",
"rest",
"ts"
],
"author": "Stephan Wissel <[email protected]>",
"contributors": [
"Alec Vincent Bardiano <[email protected]>",
"Emmanuel Ryan Gamlanga <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HCL-TECH-SOFTWARE/domino-rest-sdk-node/issues"
},
"homepage": "https://github.com/HCL-TECH-SOFTWARE/domino-rest-sdk-node#readme",
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.17",
"@types/chai-as-promised": "^7.1.8",
"@types/jsonwebtoken": "^9.0.6",
"@types/mocha": "^10.0.7",
"@types/node": "^22.1.0",
"@types/sinon": "^17.0.3",
"chai": "^5.1.1",
"chai-promised": "^1.0.6",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"dependencies": {
"jsonwebtoken": "^9.0.2"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/**/*.ts"
],
"exclude": [
"**/index.ts"
]
}
}