-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "rn-ab-hoc",
"version": "1.0.0",
"private": false,
"main": "index.js",
"homepage": "mfrachet/rn-ab-hoc",
"repository": {
"type": "git",
"url": "mfrachet/rn-ab-hoc"
},
"description":
"Poor intrusive way to make A/B Testing by using an HoC instead of components",
"keywords": ["react-native", "ios", "android", "expo"],
"author": "Marvin FRACHET <marvin.frachet@gmail.com> (@mfrachet)",
"scripts": {
"format":
"prettier-eslint --write \"src/**/*.js\" && prettier-eslint --write \"Example/src/**/*.js\"",
"lint": "eslint ./src",
"test": "./node_modules/.bin/jest --coverage --no-cache",
"test:auto": "./node_modules/.bin/jest --watch"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"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",
"prettier": "^1.6.1",
"prettier-eslint-cli": "^4.3.0",
"react": "16.0.0-beta.5",
"react-dom": "16.0.0-beta.5",
"react-native": "0.49.3",
"react-test-renderer": "16.0.0-beta.5"
},
"jest": {
"preset": "react-native",
"setupFiles": ["./setup/test.setup.js"],
"modulePathIgnorePatterns": ["<rootDir>/Example/"]
}
}