-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@asanrom/ps-bot-lib",
"version": "1.0.1",
"description": "Simple library to create bots for Pokemon Showdown",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/AgustinSRG/ps-bot-lib",
"repository": {
"type": "git",
"url": "https://github.com/AgustinSRG/ps-bot-lib"
},
"scripts": {
"prebuild": "npm run lint",
"compile": "tsc --pretty --declaration",
"build": "rimraf dist && npm run compile",
"lint": "eslint --fix src/**/*.ts",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --bail -r ts-node/register 'tests/**/*.ts'",
"gendoc": "typedoc --out docs ./src"
},
"files": [
"dist/"
],
"author": {
"name": "Agustin San Roman",
"email": "agustinsanromanguzman@gmail.com",
"url": "https://github.com/AgustinSRG"
},
"engines": {
"node": ">= 18.0.0"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@types/mocha": "10.0.1",
"@types/node": "18.15.11",
"@types/sockjs-client": "1.5.1",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "8.37.0",
"mocha": "10.2.0",
"rimraf": "4.4.1",
"ts-node": "10.9.1",
"typedoc": "0.24.6",
"typescript": "5.0.3"
},
"license": "MIT",
"dependencies": {
"sockjs-client": "1.6.1"
}
}