-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.29 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
54
55
56
57
58
59
{
"name": "@yingyeothon/slack-logger",
"version": "1.0.1",
"description": "Simple logger using Slack Webhook",
"keywords": [
"logger"
],
"author": "jaeyoung.choi <[email protected]>",
"homepage": "https://github.com/yingyeothon/slack-logger",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yingyeothon/slack-logger"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/node": "14",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@yingyeothon/logger": "^0.3.1",
"node-fetch": "^2.6.1",
"serialize-error": "^7.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}