-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "@pkmn/sim",
"version": "0.9.23",
"description": "An automatically generated extraction of just the simulator portion of Pokémon Showdown",
"repository": "github:pkmn/ps",
"homepage": "https://psim.us",
"author": "Guangcong Luo <[email protected]> (http://guangcongluo.com)",
"contributors": [
"Cathy J. Fitzpatrick <[email protected]> (https://cathyjf.com)",
"Bill Meltsner <[email protected]> (http://www.meltsner.com)"
],
"license": "MIT",
"sideEffects": false,
"main": "build/cjs/sim/index.js",
"module": "build/esm/sim/index.mjs",
"exports": {
".": {
"types": "./build/cjs/sim/index.d.ts",
"require": "./build/cjs/sim/index.js",
"import": "./build/esm/sim/index.mjs"
},
"./tools": {
"types": "./build/cjs/sim/tools/index.d.ts",
"require": "./build/cjs/sim/tools/index.js",
"import": "./build/esm/sim/tools/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"dependencies": {
"@pkmn/sets": "^5.1.2",
"@pkmn/streams": "^1.1.0"
},
"devDependencies": {
"mocha": "^10.8.2"
},
"scripts": {
"compile": "tsc -p .",
"build": "node ../build",
"test": "mocha test/main.js test/sim/*.js test/sim/**/*.js -R dot -u bdd --exit",
"lint": "eslint --quiet --cache",
"prepare": "npm run build",
"pretest": "node ../build --cjs",
"posttest": "npm run lint"
}
}