forked from HoeenCoder/Universal-Backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 778 Bytes
/
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
{
"name": "universal_backup",
"description": "Bot for the Mafia room on Pokemon Showdown written in NodeJS",
"version": "0.0.1",
"license": "MIT",
"private": true,
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "node app.js",
"test": "eslint --cache .",
"prepush": "npm test",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/HoeenCoder/Universal-Backup.git"
},
"author": {
"name": "HoeenHero"
},
"contributors": [
{
"name": "Jumbowhales"
}
],
"dependencies": {
"@types/cheerio": "^0.22.10",
"@types/websocket": "0.0.40",
"cheerio": "^1.0.0-rc.2",
"websocket": "^1.0.26"
},
"devDependencies": {
"@types/node": "^10.5.7",
"eslint": "^4.16.0",
"husky": "^0.14.3",
"typescript": "4.1"
}
}