This repository has been archived by the owner on May 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jwplayer-api",
"version": "1.5.0",
"description": "Wraper for JwPlayer platform api",
"main": "src/jwplayer-api.js",
"author": "Shy Alter",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Puemos/jwplayer-api.git"
},
"scripts": {
"prepush": "npm run test",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"video",
"jw",
"player",
"api",
"jwplayer",
"jwplatform"
],
"dependencies": {
"axios": "^0.21.1",
"nonce": "^1.0.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"coveralls": "3.0.4",
"cross-env": "5.2.0",
"eslint": "^6.0.1",
"eslint-plugin-node": "^9.1.0",
"husky": "3.0.0",
"jest": "24.8.0",
"lint-staged": "9.0.0",
"prettier": "^1.8.2",
"rimraf": "2.6.3"
},
"lint-staged": {
"{src,test}/**/*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js)$",
"moduleFileExtensions": [
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverage": true,
"mapCoverage": true
}
}