-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "slack-status-api",
"version": "1.1.0",
"description": "NPM module to import Slack system information data",
"author": "hangyeol0531 <[email protected]>",
"keywords": [
"slack",
"slack-status",
"hangyeol0531"
],
"repository": {
"type": "git",
"url": "https://github.com/hangyeol0531/slack-status-api.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc -p tsconfig.build.json",
"prebuild": "rimraf ./dist"
},
"dependencies": {
"axios": "^1.2.0"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.4",
"jest": "^29.3.1",
"ts-jest": "^29.0.4",
"typescript": "^4.9.4"
}
}