This repository was archived by the owner on Jul 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.59 KB
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
{
"name": "@xdproto/focus",
"version": "2.0.0-beta.2",
"description": "A React library for managing focus in TV apps",
"main": "dist/index.js",
"module": "es/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist es tmp",
"build": "npm run clean && rollup -c",
"prepublishOnly": "npm run build",
"test": "npm run test:unit",
"test:unit": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesplease/focus.git"
},
"keywords": [
"lrud",
"react",
"component",
"focus",
"path",
"tv",
"remote",
"television",
"hooks"
],
"author": "James Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesplease/focus/issues"
},
"files": [
"dist",
"es"
],
"homepage": "https://github.com/jamesplease/focus#readme",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-hooks-testing-library": "^0.5.0",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"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-replace": "^2.2.0"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}