-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "yt-livechat",
"version": "2.1.0",
"description": "Interact with any YouTube liveChat.",
"main": "build/index",
"types": "build/index",
"scripts": {
"build": "./node_modules/.bin/tsc -p .",
"lint": "./node_modules/.bin/tslint --fix -o lint_errors.log -p .",
"test": "./node_modules/.bin/mocha --exit build/test.js",
"start": "node build/index.js",
"prepublishOnly": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siffreinsg/yt-livechat.git"
},
"keywords": [
"live",
"chat",
"bot",
"youtube",
"stream",
"livechat",
"api"
],
"author": "Siffrein Sigy <[email protected]> (https://github.com/siffreinsg)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/siffreinsg/yt-livechat/issues"
},
"homepage": "https://github.com/siffreinsg/yt-livechat#readme",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.3",
"@types/dotenv": "^4.0.3",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"dependencies": {
"dotenv": "^6.0.0",
"google-auth-library": "^1.6.1"
}
}