-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
65 lines (65 loc) · 1.43 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
{
"name": "@appandflow/masonry-list",
"version": "0.4.0",
"main": "./src/MasonryList.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/AppAndFlow/react-native-masonry-list.git"
},
"bugs": {
"url": "https://github.com/AppAndFlow/react-native-masonry-list.git/issues"
},
"keywords": [
"react-native",
"appandflow",
"masonry",
"list"
],
"author": "AppAndFlow",
"license": "MIT",
"files": [
"/src"
],
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
},
"scripts": {
"prettier": "node ./scripts/prettier.js write",
"lint": "eslint src",
"precommit": "lint-staged",
"flow": "flow check",
"test": "jest",
"ci": "yarn lint && yarn flow && yarn test"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"example"
]
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"babel-preset-react-native": "^3.0.1",
"chalk": "^2.1.0",
"eslint": "^4.5.0",
"eslint-config-anf": "^0.5.2",
"eslint-config-prettier": "^2.3.0",
"flow-bin": "^0.53.1",
"glob": "^7.1.2",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-expo": "^20.0.0",
"lint-staged": "^4.0.3",
"prettier": "^1.5.3",
"react": "16.0.0-beta.5",
"react-native": "janicduplessis/react-native",
"react-test-renderer": "16.0.0-beta.5"
},
"dependencies": {}
}