This repository has been archived by the owner on Aug 1, 2018. It is now read-only.
forked from kimxogus/react-native-version-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"scripts": {
"format": "babel-node scripts/format",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npm run test:android && npm run test:ios",
"test:android": "cross-env RNVC_DEVICE=android babel-node scripts/test",
"test:ios": "cross-env RNVC_DEVICE=ios babel-node scripts/test",
"test:watch": "babel-node scripts/test --watch",
"prepublishOnly": "npm run test"
},
"pre-commit": [
"format"
],
"engines": {
"node": ">= 6.0.0"
},
"author": "Taehyun Kim <[email protected]> (https://github.com/kimxogus)",
"contributors": [],
"homepage": "https://github.com/kimxogus/react-native-version-check",
"repository": {
"type": "git",
"url": "https://github.com/kimxogus/react-native-version-check.git"
},
"bugs": {
"url": "https://github.com/kimxogus/react-native-version-check/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "^4.0.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "^4.14.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-native": "^3.2.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^22.0.4",
"lerna": "^2.5.1",
"pre-commit": "^1.2.2",
"promise": "^8.0.1"
},
"dependencies": {},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js?$": "babel-jest"
},
"testPathIgnorePatterns": [
"[/\\\\](build|docs|node_modules|scripts|example)[/\\\\]"
],
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}