-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
54
{
"name": "magicbell-action",
"version": "1.0.0",
"private": true,
"description": "TypeScript template action",
"main": "dist/index.js",
"source": "./src/index.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "tsx scripts/build.ts",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicbell/action.git"
},
"keywords": [
"actions",
"magicbell",
"notifications"
],
"author": "Stephan Meijer",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@vercel/ncc": "^0.36.0",
"magicbell": "^1.0.1"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^25.3.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.0",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"ts-jest": "^27.1.2",
"tsx": "^3.12.1",
"typescript": "^4.4.4"
}
}