-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 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
{
"name": "rn-displayable",
"version": "1.0.1",
"private": false,
"main": "src/index.js",
"homepage": "https://github.com/mfrachet/rn-displayable",
"repository": {
"type": "git",
"url": "https://github.com/mfrachet/rn-displayable"
},
"description": "Display your components based on props or a set of rules",
"keywords": [
"react-native",
"ios",
"android",
"expo"
],
"author": "Marvin FRACHET <marvin.frachet@gmail.com> (https://github.com/mfrachet)",
"scripts": {
"format": "prettier-eslint --write \"src/**/*.js\"",
"lint": "eslint ./src",
"test": "./node_modules/.bin/jest --coverage --no-cache"
},
"pre-commit": [
"test",
"lint"
],
"dependencies": {
"prop-types": "15.6.1"
},
"devDependencies": {
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"coveralls": "^2.13.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^4.1.1",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"jest": "21.2.1",
"pre-commit": "^1.2.2",
"prettier": "^1.6.1",
"prettier-eslint-cli": "^4.3.0",
"react": "16.0.0",
"react-dom": "^16.2.0",
"react-native": "0.50.4",
"react-test-renderer": "16.0.0"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./setup/test.setup.js"
]
}
}