-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "rainwave-websocket-sdk",
"version": "2.0.0-b3",
"description": "SDK for working with the public Rainwave Websocket API.",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint src/*.ts src/**/*.ts",
"test": "jest --colors --runInBand",
"build": "npx rimraf dist && tsc && typedoc && npx rimraf dist",
"typedoc": "typedoc --watch",
"prepush": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmcauley/rainwave-websocket-sdk.git"
},
"author": "Robert McAuley",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/rmcauley/rainwave-websocket-sdk/issues"
},
"homepage": "https://rainwave.cc",
"dependencies": {
"ws": "^7.4.6"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/ws": "7.4.0",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"dotenv": "^8.6.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "3.3.1",
"husky": "^5.2.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.36",
"typescript": "4.1.3"
}
}