-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "jwplatform",
"version": "0.0.6",
"description": "Node.js library for the JWPlatform Management API",
"repository": {
"type": "git",
"url": "git+https://github.com/jwplayer/jwplatform-node.git"
},
"bugs:": "https://github.com/jwplayer/jwplatform-node/issues",
"contributors": [
"Ian Boynton"
],
"engines": {
"node": "^6 || ^8.1 || >=10.*"
},
"main": "jwplatform/api.js",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.5.0"
},
"author": "Ian Boynton <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"js-sha1": "^0.6.0",
"qs": "^6.9.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"y18n": "^4.0.1"
},
"scripts": {
"coverage": "nyc -r text -r lcov report",
"lint": "eslint .",
"mocha": "nyc mocha",
"test": "yarn lint && yarn mocha"
},
"bugs": {
"url": "https://github.com/jwplayer/jwplatform-node/issues"
},
"homepage": "https://github.com/jwplayer/jwplatform-node#readme",
"directories": {
"example": "examples",
"test": "test"
}
}