-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "@staroverlay/dom",
"author": "sammwy",
"description": "DOM API client for build StarOverlay widgets.",
"version": "0.0.5",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npx webpack --config webpack.config.js",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepare": "husky install && yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"ts-jest": "ts-jest"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"module": "lib/index.esm.js",
"dependencies": {
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-plugin-jest": "^27.1.7",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "2.8.1",
"ts-jest": "^29.1.5",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/staroverlay/libDOM.git"
},
"bugs": {
"url": "https://github.com/staroverlay/libDOM/issues"
},
"keywords": [
"sdk",
"api",
"staroverlay",
"twitch-client",
"twitch-api",
"twitch-widget"
]
}