-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.16 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
{
"_from": "simple-twitch-api",
"_id": "[email protected]",
"_inBundle": false,
"_location": "/simple-twitch-api",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "simple-twitch-api",
"name": "simple-twitch-api",
"escapedName": "simple-twitch-api",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/simple-twitch-api/-/simple-twitch-api-1.2.0.tgz",
"_shasum": "56332742af574273a84d54e8acf2309718c028ad",
"_spec": "simple-twitch-api",
"author": {
"name": "Alexandre Coulay"
},
"bugs": {
"url": "https://github.com/alexandrecoulay/simple-twitch-api/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Simple module to use to interact with the twitch Api",
"homepage": "https://github.com/alexandrecoulay/simple-twitch-api#readme",
"keywords": [
"Api",
"Twitch",
"nodejs",
"simple"
],
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"name": "simple-twitch-api",
"repository": {
"type": "git",
"url": "git+https://github.com/alexandrecoulay/simple-twitch-api.git"
},
"scripts": {
"format": "prettier --write src/**/*.ts",
"test": "npm run lint && npm run lint:typings && npm run test:typescript",
"lint": "eslint src",
"lint:typings": "tslint src/index.ts",
"test:typescript": "tsc --noEmit",
"lint:fix": "eslint src --fix",
"dev": "node ./test/test.js",
"build": "tsc",
"update": "yarn upgrade-interactive --latest"
},
"dependencies": {
"axios": "^0.24.0",
"express": "^4.17.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14.6.0",
"npm": ">=5.0.0"
}
}