-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "@jiter/node",
"version": "0.5.0",
"description": "The official Node SDK for Jiter",
"main": "./lib/index.js",
"homepage": "https://jiter.dev",
"typings": "./lib/index.d.ts",
"repository": "https://github.com/Pantheon-Labs/jiter-node.git",
"author": "Pantheon Labs",
"license": "Apache-2.0",
"keywords": [
"Jiter",
"cron",
"webhook",
"TypeScript",
"JavaScript",
"node",
"sdk"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "yarn build --watch",
"typecheck": "yarn build --noEmit",
"test": "yarn jest",
"test:coverage": "yarn test --coverage",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "yarn lint --fix",
"prettier": "prettier -cu \"**/*\"",
"prettier:fix": "yarn prettier --write",
"clean": "rimraf lib coverage",
"reset": "yarn clean && rimraf **/node_modules",
"release": "npm publish"
},
"dependencies": {
"axios": "^0.27.2"
},
"peerDependencies": {
"@types/express": "4.x"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"express": "^4.18.1",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}