-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
93 lines (93 loc) · 2.74 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
{
"name": "react-cast-sender",
"version": "0.1.8",
"description": "Cast Sender built for React for Chromecast (CAF)",
"keywords": [
"CAF",
"Chromecast",
"react",
"cast",
"hooks",
"components",
"context"
],
"homepage": "https://antewall.github.io/react-cast-sender/",
"repository": {
"url": "https://github.com/antewall/react-cast-sender"
},
"main": "dist/react-cast-sender.cjs.js",
"module": "dist/react-cast-sender.esm.js",
"browser": "dist/react-cast-sender.iife.js",
"types": "dist/types/index.d.ts",
"author": {
"name": "Ante Wall",
"email": "antewall@gmail.com"
},
"license": "MIT",
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "rollup -c -w",
"test": "yarn jest",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"clean": "rm -rf dist",
"release": "yarn clean && yarn build && yarn publish",
"deploy": "yarn build && cd docs && PUBLIC_URL=/react-cast-sender/ yarn build && cd .. && gh-pages -d docs/build"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"styled-components": "^4.2.0"
},
"dependencies": {
"@types/chrome": "0.0.86",
"@types/chromecast-caf-sender": "1.0.1"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@types/enzyme": "3.9.3",
"@types/jest": "24.0.15",
"@types/lodash": "4.14.132",
"@types/react": "16.8.18",
"@types/react-dom": "16.8.4",
"@types/styled-components": "4.1.8",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"coveralls": "3.0.4",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "5.16.0",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"gh-pages": "2.0.1",
"jest": "24.8.0",
"jest-environment-enzyme": "7.0.2",
"jest-enzyme": "7.0.2",
"lodash": "4.17.11",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hooks-testing-library": "0.5.1",
"react-test-renderer": "16.8.6",
"rollup": "1.12.3",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-peer-deps-external": "2.2.0",
"typescript": "3.4.5"
},
"engines": {
"node": ">=10.15.3"
}
}