-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
89 lines (89 loc) · 2.48 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@slippi/slippi-js",
"version": "6.7.0",
"description": "Official Project Slippi Javascript SDK",
"sideEffects": false,
"license": "LGPL-3.0-or-later",
"repository": "project-slippi/slippi-js",
"author": {
"name": "Jas Laferriere",
"email": "[email protected]",
"url": "https://github.com/JLaferri"
},
"files": [
"dist"
],
"source": "./src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.esm.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "yarn run clean",
"start": "dts watch --target node",
"build:check": "tsc --noEmit",
"build": "tsc --noEmit && dts build --target node",
"coverage": "yarn run test --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"test": "dts test --runInBand --verbose",
"test:watch": "yarn run test --watchAll --coverage",
"test:ci": "yarn run test --ci --coverage",
"lint": "dts lint src",
"lint:fix": "dts lint src --fix",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublishOnly": "yarn run lint && yarn run test && yarn run build"
},
"keywords": [
"slp-parser-js",
"slp",
"slippi",
"melee",
"ssbm"
],
"dependencies": {
"@shelacek/ubjson": "^1.0.1",
"date-fns": "^2.28.0",
"enet": "^0.2.9",
"iconv-lite": "^0.6.2",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"reconnect-core": "^1.3.0",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.9",
"@types/reconnect-core": "^1.3.1",
"@types/semver": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"dts-cli": "^1.1.6",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-strict-booleans": "^1.0.0",
"husky": "^4.2.5",
"open-cli": "^7.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn lint --quiet"
}
}
}