-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
52
53
54
55
56
57
{
"name": "slippi-search",
"version": "1.4.4",
"description": "A collection of useful functions for searching through Slippi Replays",
"license": "MIT",
"repository": "dawsonbooth/slippi-search",
"keywords": [
"backend",
"typescript",
"slippi",
"slp",
"smash",
"melee",
"ssbm",
"slp-parser-js",
"@slippi/slippi-js"
],
"author": {
"name": "Dawson Booth",
"email": "[email protected]",
"url": "https://github.com/dawsonbooth"
},
"engines": {
"node": ">=6"
},
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/*/** --fix",
"test": "jest",
"build": "tsc",
"docs": "yarn typedoc",
"postdocs": "touch docs/.nojekyll"
},
"dependencies": {
"@slippi/slippi-js": "^5.0.4",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.137",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.0.0",
"typedoc": "^0.16.7",
"typescript": "^3.6.2"
}
}