forked from smogon/pokemon-showdown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.4 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
79
80
81
82
83
84
85
86
87
{
"name": "pokemon-showdown",
"description": "The server for the Pokémon Showdown battle simulator",
"version": "0.11.5",
"main": ".sim-dist/index.js",
"dependencies": {
"@types/better-sqlite3": "^5.4.0",
"probe-image-size": "^5.0.0",
"sockjs": "^0.3.21",
"sucrase": "^3.15.0"
},
"optionalDependencies": {
"better-sqlite3": "^7.1.0",
"brain.js": "^2.0.0-beta.2",
"cloud-env": "^0.2.3",
"githubhook": "^1.9.3",
"node-static": "^0.7.11",
"nodemailer": "^6.4.6",
"permessage-deflate": "^0.1.7",
"sql-template-strings": "^2.2.2",
"sqlite": "^3.0.6"
},
"secretDependencies": {
"node-oom-heapdump": "^1.2.0"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node pokemon-showdown start",
"build": "node build",
"tsc": "tsc",
"fast-lint": "eslint . --config .eslintrc-no-types.json --cache --cache-location .eslintcache-no-types --ext .js,.ts",
"lint": "eslint . --cache --ext .js,.ts",
"fix": "eslint . --cache --ext .js,.ts --fix",
"full-lint": "eslint . --cache --ext .js,.ts --max-warnings 0",
"pretest": "npm run lint && npm run build",
"test": "mocha",
"posttest": "npm run tsc",
"full-test": "npm run full-lint && npm run build && npm run tsc && mocha --forbid-only -g \".*\""
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"bin": "./pokemon-showdown",
"homepage": "http://pokemonshowdown.com",
"repository": {
"type": "git",
"url": "https://github.com/smogon/pokemon-showdown.git"
},
"author": {
"name": "Guangcong Luo",
"email": "[email protected]",
"url": "http://guangcongluo.com"
},
"contributors": [
{
"name": "Cathy J. Fitzpatrick",
"email": "[email protected]",
"url": "https://cathyjf.com"
},
{
"name": "Bill Meltsner",
"email": "[email protected]",
"url": "http://www.meltsner.com"
}
],
"license": "MIT",
"devDependencies": {
"@types/cloud-env": "^0.2.1",
"@types/node": "^14.14.6",
"@types/node-static": "^0.7.5",
"@types/nodemailer": "^6.4.0",
"@types/sockjs": "^0.3.32",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.0",
"mocha": "^8.2.0",
"smogon": "^1.4.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}