-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
41 lines (41 loc) · 914 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
41
{
"name": "@pkmn/view",
"version": "0.6.30",
"description": "Library for building Pokémon Showdown client UIs",
"repository": "github:pkmn/ps",
"license": "MIT",
"sideEffects": false,
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"bin": {
"format-battle": "./format-battle"
},
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"dependencies": {
"@pkmn/protocol": "^0.6.30",
"@pkmn/types": "^4.0.0"
},
"scripts": {
"lint": "eslint --cache src",
"fix": "eslint --fix src",
"compile": "tsc -p .",
"build": "npm run compile && node ../build src/index.ts",
"test": "jest",
"pretest": "npm run build",
"posttest": "npm run lint"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules/",
"build/"
]
}
}