-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.81 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
{
"name": "smogon-usage-parser",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"sup": "./dist/index.js"
},
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"dev": "./node_modules/typescript/bin/tsc --watch & nodemon dist",
"lint": "eslint src --ext ts",
"tsc": "./node_modules/typescript/bin/tsc",
"test": "./node_modules/typescript/bin/tsc && ./node_modules/mocha/bin/mocha --opts .mocha.opts",
"coverage": "./node_modules/typescript/bin/tsc && ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha --opts .mocha.opts",
"report": "./node_modules/typescript/bin/tsc && ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha --opts .mocha.opts && open coverage/index.html",
"docker": "docker build -t br . && docker run -p 3000:3000 -p 3001:3001 br node dist",
"docker_test": "docker build -t br . && docker run -p 3000:3000 -p 3001:3001 br ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha --opts .mocha.opts"
},
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@types/args": "^3.0.0",
"@types/node": "^10.3.1",
"args": "^5.0.1",
"asciiparse": "^0.1.1",
"chai": "^4.1.2",
"fs": "^0.0.1-security",
"json2csv": "^5.0.1",
"node-fetch": "^2.6.0",
"nyc": "^14.1.1",
"prettier-eslint": "^9.0.0",
"ts-node": "^8.3.0",
"tsc": "^1.20150623.0+f2044a901165a2a97813772353b57dd9ed4796ca",
"typescript": "^2.9.1"
},
"devDependencies": {
"@types/mocha": "^5.2.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"mocha": "^6.1.4",
"tslint": "^5.10.0",
"typescript-eslint-parser": "^16.0.0"
}
}