-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 944 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
{
"name": "streamlabs",
"author": "Tomas Novas",
"url": "https://github.com/tnovas/streamlabs",
"repository": {
"type": "git",
"url": "https://github.com/tnovas/streamlabs"
},
"email": "[email protected]",
"version": "3.0.0",
"description": "This module is a implementation of Streamlabs API https://streamlabs.com/",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest --coverage test/unit/**.spec.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"start": "node --inspect test/integration",
"lint": "./node_modules/.bin/eslint ./lib"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"express": "^4.17.1",
"jest": "^24.8.0",
"jest-mock-axios": "^3.1.0"
},
"dependencies": {
"axios": "^0.19.0",
"oauth20": "^3.0.0"
}
}