-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
88 lines (88 loc) · 2.47 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
{
"name": "@vinceau/slp-realtime",
"description": "Realtime slp parsing",
"license": "MIT",
"version": "4.0.0",
"repository": "vinceau/slp-realtime",
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --verbose --detectOpenHandles",
"typecheck": "yarn tsc --noEmit",
"coverage": "yarn run test --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "yarn run lint --fix",
"clean": "rimraf dist",
"prebuild": "yarn run clean",
"build": "rollup -c",
"watch": "rollup -cw",
"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",
"docs": "yarn typedoc src/index.ts --excludePrivate --exclude \"**/*+(.spec).ts\"",
"postdocs": "touch docs/.nojekyll"
},
"keywords": [
"slp",
"slippi",
"realtime"
],
"dependencies": {
"chokidar": "^3.3.1",
"fs-extra": "^8.1.0",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"tailstream": "^0.1.0"
},
"peerDependencies": {
"@slippi/slippi-js": "^6.x",
"rxjs": "^6.x"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.0",
"@slippi/slippi-js": "^6.7.0",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.138",
"@types/node": "^12.7.3",
"@types/sinon": "^7.5.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"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.1",
"husky": "^4.3.8",
"jest": "^27.3.1",
"open-cli": "^7.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"rollup": "^2.2.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.26.0",
"rxjs": "^6.5.4",
"sinon": "^7.5.0",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.7",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}