-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.41 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "rn-dev-toolbox",
"version": "0.2.5",
"main": "dist/index.js",
"types": "./src/index.tsx",
"scripts": {
"ready": "npm run tsc && npm test && npm run standard && npm run dist",
"test": "jest",
"standard": "standard **/*.{tsx,ts,js}",
"prepublishOnly": "npm run dist",
"dist": "npm run rollup",
"rollup": "rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js -w",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/mbret/rn-dev-toolbox"
},
"dependencies": {
"rollup-plugin-json": "^3.1.0",
"memoize-one": "5.0.0",
"hoist-non-react-statics": "^3.2.1"
},
"peerDependencies": {
"react-native": "0.56.x | 0.57.x",
"react": "16.6.x | 16.7.x"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@types/hoist-non-react-statics": "^3.0.1",
"@types/jest": "^23.3.13",
"@types/memoize-one": "^4.1.0",
"@types/react": "^16.7.20",
"@types/react-native": "^0.57.29",
"@types/react-test-renderer": "^16.0.3",
"babel-jest": "23.6.0",
"coveralls": "3.0.2",
"eslint-plugin-typescript": "^0.14.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.51.1",
"react": "16.6.3",
"react-native": "0.57.8",
"react-test-renderer": "16.6.3",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-typescript": "^1.0.0",
"standard": "12.0.1",
"tslib": "^1.9.3",
"typescript": "^3.2.4",
"typescript-eslint-parser": "^22.0.0"
},
"author": "Maxime Bret",
"license": "MIT",
"description": "",
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
],
"ignore": [
"/flow-typed",
"/test/preprocessor.js",
"/types"
],
"globals": [
"__DEV__"
]
},
"jest": {
"verbose": true,
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupTestFrameworkScriptFile": "<rootDir>/test/setupTests.js",
"transform": {
"^.+\\.(js|ts|tsx)$": "<rootDir>/test/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"coverageThreshold": {
"global": {
"branches": 50,
"lines": 60,
"statements": 60,
"functions": 69
}
}
}
}