-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.45 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": "read-action",
"version": "7.1.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"pretest": "eslint . --ext .js,.ts",
"test": "jest --coverage",
"build": "ncc build src/index.ts"
},
"author": "Katy DeCorah",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"node-isbn": "^1.6.1"
},
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"typescript": "^5.1.6"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katydecorah/read.git"
},
"bugs": {
"url": "https://github.com/katydecorah/read/issues"
},
"homepage": "https://github.com/katydecorah/read#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"
],
"jest": {
"resetMocks": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}