-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.03 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
{
"name": "react-lrud",
"version": "1.6.0",
"description": "Official React bindings for Lrud",
"main": "dist/index.js",
"unpkg": "dist/index.js",
"license": "Apache-2.0",
"files": [
"dist"
],
"author": {
"name": "Stuart Williams",
"url": "https://github.com/stuart-williams"
},
"keywords": [
"tv",
"navigation",
"tv-apps",
"react",
"react-tv",
"focus",
"focus management",
"spatial navigation",
"smart tv"
],
"repository": {
"type": "git",
"url": "[email protected]:bbc/react-lrud.git"
},
"peerDependencies": {
"react": "^16.2.0",
"lrud": "^2.7.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"in-publish": "^2.0.0",
"jest": "^24.1.0",
"pre-push": "^0.1.1"
},
"dependencies": {
"airbnb-prop-types": "^2.8.1",
"hoist-non-react-statics": "^2.5.0",
"lrud": "^2.7.0",
"prop-types": "^15.6.1",
"uniqid": "^4.1.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2"
},
"pre-push": [
"lint",
"test"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"prebuild": "npm run clean",
"build": "babel src --out-dir dist",
"prepublish": "not-in-install && npm run build || in-install # NPM insanely runs prepublish on npm install: https://github.com/npm/npm/issues/3059",
"pretest": "npm run lint",
"test": "jest",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"watch": "npm run build -- --watch"
},
"jest": {
"setupFiles": [
"./test/setup"
]
}
}