-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "@shelf/gh-sdk",
"version": "2.0.0",
"description": "Convenient wrapper for GitHub API for automation tasks",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "[email protected]",
"url": "https://shelf.io"
},
"type": "module",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/ && tsc",
"coverage": "jest --coverage",
"lint": "eslint . --ext .js,.ts,.json --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"prepack": "yarn build",
"test": "jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,json,md,yml}": "prettier --write",
"*.{js,ts}": "eslint --fix"
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"@octokit/rest": "20.1.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@shelf/eslint-config": "3.15.1",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.1.0",
"@swc/core": "1.4.14",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "20.12.7",
"eslint": "8.57.1",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"ts-jest-resolver": "2.0.1",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}