-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.07 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": "supersetbot",
"version": "0.5.16",
"description": "A bot for the Superset GitHub repo",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"eslint": "eslint",
"lint": "eslint .",
"supersetbot": "supersetbot"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/rest": "^20.0.2",
"commander": "^11.0.0",
"semver": "^7.6.0",
"simple-git": "^3.22.0",
"string-argv": "^0.3.2",
"toml": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0"
},
"bin": {
"supersetbot": "./src/supersetbot"
}
}