-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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": "gort",
"version": "1.0.0",
"description": "typescript reddit moderation tool",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"pretty": "npx prettier --write .",
"start": "npm run build && node --trace-deprecation dist/index.js",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test && start ./coverage/lcov-report/index.html",
"documentation": "typedoc --categorizeByGroup --entryPointStrategy expand ./src"
},
"keywords": [
"typescript",
"reddit",
"moderation"
],
"author": "J. R. Swift",
"license": "GPL-3.0-only",
"repository": "https://github.com/JamesxX/gort.git",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^18.11.15",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"ts-node": "^10.7.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@conversationai/perspectiveapi-js-client": "github:JamesxX/perspectiveapi-js-client#Fix-Security",
"chalk": "^4.1.2",
"discord.js": "^13.5.0",
"dotenv": "^16.0.0",
"mongoose": "^6.2.6",
"snoowrap": "^1.23.0",
"toolbox-api": "github:eritbh/toolbox-api#builds/main"
}
}