-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 919 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
33
34
35
36
{
"name": "pr-smartrr",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Uchenna Sylvester Okoro"
},
"scripts": {
"clean": "rimraf dist && rimraf lib",
"build": "pnpm clean && tsc && ncc build lib/index.js",
"start": "pnpm build && node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "^0.38.1",
"rimraf": "^5.0.5"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}