-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
32 lines (32 loc) · 908 Bytes
/
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
{
"name": "fabric-action-scripts",
"version": "1.0.0",
"license": "MIT",
"description": "A collection of custom scripts used by Fabric's Github action workflows",
"private": true,
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "prettier --write ./src",
"check": "prettier --check ./src",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --coverage=true",
"all": "npm run check && npm run build && npm run package && npm run test"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@octokit/core": "^5.0.0"
},
"devDependencies": {
"@octokit/types": "^11.1.0",
"@types/jest": "^29.5.5",
"@vercel/ncc": "^0.38.0",
"jest": "^29.7.0",
"nock": "^13.3.3",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}