-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "good-bundle",
"version": "1.0.0",
"private": true,
"main": "lib/main.js",
"repository": "https://github.com/birchill/good-bundle.git",
"author": "Brian Birtles <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@fast-csv/parse": "5.0.2",
"aws-sdk": "2.1692.0",
"cloneable-readable": "3.0.0",
"fast-glob": "3.3.2"
},
"devDependencies": {
"@types/cloneable-readable": "2.0.3",
"@types/jest": "29.5.14",
"@types/node": "20.17.10",
"@vercel/ncc": "0.38.3",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"scripts": {
"postinstall": "husky",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn format && yarn package"
}
}