-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "@testboxlab/node-sdk",
"version": "0.0.0",
"description": "A Node.js helper library to integrate products into TestBox",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"./lib"
],
"scripts": {
"prepare": "husky install",
"format": "prettier --write src/ test/",
"format:check": "prettier --check src/ test/",
"test": "jest",
"build": "tsc",
"prepublish": "tsc",
"build:docs": "typedoc && cp assets/pedals.svg docs/assets",
"docs": "npm run docs && open docs/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TestBoxLab/node-sdk.git"
},
"author": "Pedals <dev@testbox.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TestBoxLab/node-sdk/issues"
},
"homepage": "https://github.com/TestBoxLab/node-sdk#readme",
"devDependencies": {
"@commitlint/config-conventional": "^17.3.0",
"@jest-mock/express": "^2.0.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"axios-mock-adapter": "^1.21.2",
"commitlint": "^17.2.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"nock": "^13.2.9",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.21"
},
"dependencies": {
"axios": "^1.1.3",
"jose": "^4.11.0"
}
}