-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.76 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.76 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
69
70
71
72
73
74
75
76
77
{
"name": "react-native-flat-list",
"title": "React Native Flat List",
"version": "1.0.0",
"description": "TODO",
"main": "src/FlatList/index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github_account/react-native-flat-list.git",
"baseUrl": "https://github.com/github_account/react-native-flat-list"
},
"keywords": [
"react-native"
],
"author": {
"name": "Your Name",
"email": "yourname@email.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.1.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier-standard": "^14.0.3",
"react": "^16.8.3",
"react-native": "^0.59.10",
"standard": "^14.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"FlatList/**/*.{js,jsx,ts}": [
"prettier-standard",
"eslint --fix",
"standard --fix",
"git add"
]
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"globals": [
"__DEV__",
"fetch",
"navigator",
"global"
],
"ignore": [
"__tests__",
"node_modules"
]
}
}