forked from smogon/damage-calc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "pokemon-showdown-damage-calc",
"private": true,
"description": "The official damage calculator for the Pokémon Showdown battle simulator",
"version": "0.3.0",
"homepage": "http://pokemonshowdown.com/calc",
"repository": {
"type": "git",
"url": "https://github.com/Zarel/honko-damagecalc.git"
},
"author": {
"name": "Guangcong Luo",
"email": "zarel@zarel.com",
"url": "http://guangcongluo.com"
},
"contributors": [
"Austin Couturier <austincouturier@icloud.com>",
"Kirk Scheibelhut <kjs@scheibo.com>",
"Mathieu Dias-Martins"
],
"license": "MIT",
"dependencies": {
"calc": "file:calc"
},
"devDependencies": {
"eslint": "^6.1.0",
"subpkg": "^0.0.1"
},
"scripts": {
"lint": "subpkg run lint && eslint --cache .",
"fix": "subpkg run fix",
"compile": "subpkg run compile && node build view",
"test": "subpkg run test",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"postinstall": "subpkg install"
},
"subPackages": [
"calc"
]
}