-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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
{
"name": "twitch-api-ts",
"author": "sammwy",
"description": "Modern wrapper for the Twitch API with typings.",
"version": "0.1.2",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rimraf ./lib",
"build": "yarn clean && tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "dotenv 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"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"module": "lib/index.js",
"dependencies": {
"isomorphic-unfetch": "^3.1.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"eslint": "^8.30.0",
"eslint-plugin-jest": "^27.1.7",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "2.8.1",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammwyy/twitch-api.git"
},
"bugs": {
"url": "https://github.com/sammwyy/twitch-api/issues"
},
"keywords": [
"twitch",
"twitch-client",
"twitch-api",
"twitch-auth",
"api"
]
}