-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "@huskiesio/bot",
"version": "0.2.6",
"description": "A package to build a bot for the huskies.io chat application.",
"keywords": [],
"main": "js/index",
"types": "dts/index",
"files": [
"js",
"dts"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && /usr/local/bin/tsc -p tsconfig.json",
"watch": "tsc -w -p .",
"clean": "rm -rf js && rm -rf dts",
"start": "node js/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huskiesio/bot.git"
},
"publishConfig": {
"access": "public"
},
"author": "Elijah Cobb <elijah@elijahcobb.com> (https://elijahcobb.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/huskiesio/bot/issues"
},
"homepage": "https://github.com/huskiesio/bot#readme",
"dependencies": {
"@command-socket/node-client": "latest",
"@element-ts/krypton": "^0.3.3",
"@huskiesio/types": "^0.1.31",
"@types/mongodb": "latest",
"@types/ws": "latest"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest",
"tslint": "latest",
"jest": "latest",
"@types/jest": "latest"
}
}