forked from s0/libyear-node-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 928 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 928 Bytes
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
{
"name": "libyear-node-action",
"scripts": {
"build": "tsc && ncc build lib/src/run -o dist/main && ncc build node_modules/libyear/bin/libyear -o dist/libyear",
"lint-prettier": "prettier -c src/**/* test/**/*.ts",
"lint": "npm run lint-prettier",
"lint:fix": "prettier -w src/**/* test/**/*.ts",
"test": "jest --projects test/jest.config.js --runInBand --verbose"
},
"devDependencies": {
"@types/git-url-parse": "^9.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.6",
"@vercel/ncc": "0.38.1",
"dotenv": "^16.4.5",
"git-url-parse": "^14.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/io": "^1.1.3",
"fp-ts": "^2.10.5",
"io-ts": "^2.2.16",
"isomorphic-git": "^1.8.2",
"libyear": "^0.7.0"
}
}