generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.54 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
50
51
52
53
{
"name": "notion-card-update-action",
"version": "0.0.2",
"private": false,
"description": "Typescript action to update notion cards",
"main": "lib/main.js",
"scripts": {
"build": "tsc -b src",
"build:clean": "rm -rf lib & npm run build",
"format": "prettier --write 'src/*.ts' 'tests/*.ts'",
"format-check": "prettier --check 'src/*.ts' 'tests/*.ts'",
"lint": "eslint --ext ts src tests",
"package": "ncc build --source-map --license licenses.txt",
"package:clean": "rm -rf dist & npm run package",
"test": "jest",
"all": "npm run build:clean && npm run format && npm run lint && npm run package:clean",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramykl/notion-card-update-action.git"
},
"keywords": [
"actions",
"node",
"notion"
],
"author": "Ramy Loveridge",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"@notionhq/client": "^2.1.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^27.5.2",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.30.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.5.3",
"husky": "^8.0.1",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"ts-jest": "^27.1.2",
"typescript": "^4.7.4"
}
}