-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
78 lines (78 loc) · 2.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "jellobot",
"version": "0.0.0",
"description": "an awesome irc bot",
"main": "index.js",
"repository": "[email protected]:brigand/jellobot.git",
"author": "Frankie Bagnardi <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"format": "npx prettier --write '{src/**/*.js,scripts/**/*.js,scripts/**/*.sh,README.md}'"
},
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/generator": "^7.13.9",
"@babel/parser": "^7.13.11",
"@babel/plugin-proposal-async-generator-functions": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-class-static-block": "^7.13.11",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-do-expressions": "^7.12.13",
"@babel/plugin-proposal-dynamic-import": "^7.13.8",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.13.8",
"@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-catch-binding": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/plugin-proposal-partial-application": "^7.12.13",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-proposal-private-property-in-object": "^7.13.0",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-proposal-unicode-property-regex": "^7.12.13",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-record-and-tuple": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/plugin-transform-typescript": "^7.13.0",
"@babel/traverse": "^7.13.0",
"@iarna/toml": "^2.2.5",
"bluebird": "^3.7.2",
"chalk": "^2.4.2",
"cheerio": "^0.22.0",
"dirsum": "^0.1.1",
"glob": "^7.1.6",
"grapheme-splitter": "^1.0.4",
"irc": "^0.5.2",
"irc-upd": "^0.11.0",
"js-yaml": "^3.14.1",
"json5": "^2.2.0",
"node-fetch": "^2.6.1",
"prettier": "1.18.2",
"shell-escape": "^0.2.0",
"superagent": "^5.3.1"
},
"devDependencies": {
"acorn": "^7.4.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"nearley": "^2.20.1",
"ssh2": "^0.8.9"
}
}