forked from NoriginMedia/react-spatial-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.13 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
{
"name": "@noriginmedia/react-spatial-navigation",
"version": "2.12.8",
"description": "HOC-based Spatial Navigation (key navigation) solution for React",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"eslint": "eslint src",
"dist": "./node_modules/.bin/babel src --out-dir dist --copy-files --plugins=transform-object-rest-spread --presets=env,react",
"start": "parcel index.html -d parcel",
"test": "jest",
"prepublishOnly": "npm run eslint",
"prepare": "npm run dist",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoriginMedia/react-spatial-navigation.git"
},
"keywords": [
"react",
"recompose",
"spatial-navigation",
"hoc"
],
"author": "Dmitriy Bryokhin <[email protected]>",
"contributors": [
"Dmitriy Bryokhin <[email protected]>",
"Jamie Birch <[email protected]>",
"Antonio Salvati <[email protected]>",
"Enrico Bardelli <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NoriginMedia/react-spatial-navigation/issues"
},
"homepage": "https://github.com/NoriginMedia/react-spatial-navigation#readme",
"peerDependencies": {
"react": ">=16.5.1",
"react-dom": ">=16.5.1",
"react-native-web": "^0.11.2"
},
"dependencies": {
"lodash": "^4.17.13",
"prop-types": "^15.6.2",
"recompose": "^0.30.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "8.2.3",
"babel-jest": "^23.6.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "4.19.1",
"eslint-config-norigin": "git+https://github.com/NoriginMedia/eslint-config-norigin.git#v3.7.5",
"jest": "^23.6.0",
"parcel-bundler": "^1.11.0",
"pre-commit": "^1.2.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-native-web": "^0.11.2"
},
"pre-commit": [
"eslint"
],
"alias": {
"react-native": "react-native-web"
}
}