forked from cedricmontet/nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1021 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": "@api.video/nodejs-sdk",
"version": "1.9.8",
"description": "Nodejs SDK for api.video",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ApiVideo/nodejs-sdk"
},
"bugs:": "https://github.com/ApiVideo/nodejs-sdk/issues",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js --fix ./lib",
"test": "mocha --require test/api/index.js --exclude test/sandbox.spec.js",
"test:sandbox": "node test/sandbox.spec.js"
},
"files": [
"lib/"
],
"author": "",
"license": "ISC",
"dependencies": {
"form-data": "^3.0.0",
"got": "^11.8.1",
"tempnam": "^1.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.12.3",
"mocha": "^8.0.1",
"nock": "^13.0.2",
"sinon": "^7.2.2"
}
}