-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "@cloudbourn/scheduler-sdk",
"version": "1.0.1",
"description": "",
"engines": {
"node": ">=14.19.1"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist/ && tsc -p tsconfig.build.json",
"prepack": "rm -rf dist/ && tsc -p tsconfig.build.json",
"prepare": "husky install",
"test": "tsc --noEmit && eslint src/ && vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cloudbourn/scheduler-sdk.git"
},
"bugs": {
"url": "https://github.com/Cloudbourn/scheduler-sdk/issues"
},
"homepage": "https://lingering.io",
"keywords": [
"scheduler",
"webhooks",
"api",
"sdk",
"lingering"
],
"author": "Joakim Hedlund <[email protected]>",
"license": "MIT",
"dependencies": {
"phin": "^3.7.0"
},
"devDependencies": {
"@cloudbourn/commitlint-config": "^1.0.0",
"@commitlint/cli": "^17.4.2",
"@types/node": "^14.18.42",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^7.0.4",
"nock": "^13.3.6",
"typescript": "^5.0.4",
"vitest": "^0.34.6"
}
}