-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 970 Bytes
/
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
{
"name": "twitchio-js",
"version": "1.0.5",
"description": "A simple twitch api library that makes it easy to interact with twitch apis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"run": "node dist/index.js",
"start": "npm-run-all build run",
"build-tests": "npm-run-all build test",
"release": "npm-run-all build run-release",
"run-release": "npm publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gypsydangerous/twitch-helper.git"
},
"keywords": [
"twitch",
"api",
"fetch",
"api-wrapper",
"open-source"
],
"author": "David Snyder",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gypsydangerous/twitch-helper/issues"
},
"homepage": "https://github.com/Gypsydangerous/twitch-helper#readme",
"dependencies": {
"fetchio-js": "^1.1.1"
},
"devDependencies": {
"@types/node": "^14.6.4",
"dotenv": "^8.2.0",
"jest": "^26.4.2"
}
}