-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "notion-status-and-pr-update",
"version": "1.0.17",
"description": "",
"main": "src/index.ts",
"scripts": {
"prepare": "husky install",
"start": "npx ts-node --transpile-only src/index.ts",
"build": "tsc",
"package": "ncc build --license licenses.txt",
"lint": "eslint ./src --ext .ts --ext .js",
"lint:fix": "eslint ./src --ext .ts --ext .js --fix",
"test:unit": "jest --coverage --passWithNoTests",
"test:watch": "jest --watch",
"release": "semantic-release",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"keywords": [],
"author": "Sebastian Cretu",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.4.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@notionhq/client": "^2.2.15",
"lodash": "^4.17.21"
}
}