-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.32 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
{
"name": "@andrewgibson/react-youtube-fixed",
"version": "2.1.0",
"description": "Control fixed-position YouTube videos from anywhere in your React application",
"author": "Andrew Gibson <[email protected]>",
"license": "MIT",
"main": "lib/rytf.js",
"unpkg": "dist/rytf.min.js",
"module": "es/rytf.js",
"repository": "github:andrewgibson27/react-youtube-fixed",
"bugs": "https://github.com/andrewgibson27/react-youtube-fixed/issues",
"keywords": [
"react",
"youtube",
"fixed",
"context",
"responsive",
"video",
"player"
],
"files": [
"dist",
"es",
"lib",
"package.json"
],
"scripts": {
"clean": "rimraf dist es lib",
"build": "NODE_ENV=production rollup -c",
"lint": "eslint src/** --ext .ts,.tsx",
"dev": "NODE_ENV=development rollup -c rollup.config.dev.js",
"test": "echo \"No test specified\"",
"prepublishOnly": "npm run clean && npm run lint && npm test && npm run build",
"release": "np --no-yarn"
},
"dependencies": {
"reframe.js": "^2.2.5"
},
"peerDependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2"
},
"devDependencies": {
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/youtube": "0.0.35",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"np": "^6.5.0",
"prettier": "^1.15.3",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"rimraf": "^2.6.3",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-serve": "^0.6.1",
"rollup-plugin-terser": "^4.0.2",
"rollup-plugin-typescript2": "^0.21.0",
"typescript": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">= 8.6.0",
"npm": ">= 6.8.0"
},
"sideEffects": [
"*.css"
],
"npmName": "react-youtube-fixed"
}