-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 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
45
46
47
48
{
"name": "@knocklabs/node",
"version": "0.6.16",
"description": "Library for interacting with the Knock API",
"homepage": "https://github.com/knocklabs/knock-node",
"author": "@knocklabs",
"license": "MIT",
"keywords": [
"knock",
"knocklabs",
"notify"
],
"main": "./dist/src/index.js",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/knocklabs/knock-node.git"
},
"bugs": {
"url": "https://github.com/knocklabs/knock-node/issues"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json -c tslint.json",
"format": "prettier \"src/**/*.{js,ts,tsx}\" --write",
"format:check": "prettier \"src/**/*.{js,ts,tsx}\" --check",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@types/pluralize": "0.0.29",
"msw": "^2.1.5",
"prettier": "2.2.1",
"tslint": "6.1.3",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"dependencies": {
"jose": "^5.2.0"
},
"engines": {
"node": ">=17.5.0"
}
}