-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "read-action",
"version": "9.2.1",
"main": "dist/index.js",
"type": "module",
"scripts": {
"pretest": "eslint .",
"test": "jest --coverage",
"build": "ncc build src/index.ts",
"format": "prettier . --write"
},
"author": "Katy DeCorah",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@library-pals/isbn": "^1.4.2",
"cheerio": "^1.0.0",
"open-graph-scraper": "^6.8.2",
"schema-dts": "^1.1.2"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.16.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"prettier-2": "npm:prettier@^2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/library-pals/read-action.git"
},
"bugs": {
"url": "https://github.com/library-pals/read-action/issues"
},
"homepage": "https://github.com/library-pals/read-action#readme",
"description": "This GitHub action tracks the books that you've read by updating the `_data/read.json` file in your repository.",
"keywords": [
"github-actions"
]
}