forked from tjallingt/react-youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.89 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-youtube",
"version": "7.9.0",
"description": "React.js powered YouTube player component",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git@github.com:tjallingt/react-youtube.git"
},
"keywords": [
"react",
"youtube",
"player",
"react-component"
],
"author": "Tjalling Tolle <tjallingt@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjallingt/react-youtube/issues"
},
"homepage": "https://github.com/tjallingt/react-youtube",
"dependencies": {
"fast-deep-equal": "3.1.1",
"prop-types": "15.7.2",
"youtube-player": "5.5.2"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@testing-library/jest-dom": "5.3.0",
"@testing-library/react": "10.0.2",
"@types/youtube": "0.0.38",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.2.6",
"babel-loader": "8.1.0",
"commitizen": "4.0.3",
"cross-env": "7.0.2",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"husky": "4.2.3",
"jest": "25.2.6",
"lint-staged": "10.1.1",
"npm-run-all": "4.1.5",
"parcel-bundler": "1.12.4",
"prettier": "2.0.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"semantic-release": "17.0.4"
},
"peerDependencies": {
"@types/youtube": "0.0.38",
"react": ">=0.14.1"
},
"engines": {
"node": ">= 10.x"
},
"scripts": {
"test": "jest",
"test:ci": "jest --ci --runInBand",
"compile:cjs": "babel src/YouTube.js --out-file dist/index.js",
"compile:es": "cross-env BABEL_ENV=es babel src/YouTube.js --out-file dist/index.esm.js",
"compile": "npm-run-all --parallel compile:*",
"prepublishOnly": "npm run compile",
"lint": "eslint src example",
"example": "parcel example/index.html --open",
"example:build": "parcel build example/index.html --out-dir build",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{html,json}": "prettier --write"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}