forked from kimxogus/react-native-version-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"scripts": {
"lint": "eslint .",
"flow": "flow",
"pretest": "yarn lint",
"test": "yarn test:android && yarn test:ios",
"test:ci": "JEST_JUNIT_OUTPUT=test-results/jest-android.xml yarn test:android --ci --testResultsProcessor='jest-junit' && JEST_JUNIT_OUTPUT=test-results/jest-ios.xml yarn test:ios --ci --testResultsProcessor='jest-junit'",
"test:coverage": "jest --coverage --coverageDirectory test-results/coverage --collectCoverageOnlyFrom packages/**/*",
"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": "yarn test",
"lerna-publish": "lerna publish --conventional-commits",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js}": [
"eslint --fix .",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">= 6.0.0"
},
"name": "react-native-version-check",
"version": "3.0.2",
"author": "Taehyun Kim <kgyoo8232@gmail.com> (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": {
"@types/semver": "^5.5.0",
"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-config-aroundus": "^1.1.0",
"eslint-config-react-native": "^2.0.0",
"eslint-plugin-react-native": "^3.2.0",
"flow-bin": "^0.66.0",
"flow-typed": "^2.3.0",
"husky": "^0.14.3",
"isomorphic-fetch": "^2.2.1",
"jest": "^22.0.4",
"jest-junit": "^3.6.0",
"lerna": "^2.5.1",
"lint-staged": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1",
"promise": "^8.0.1"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js?$": "babel-jest"
},
"testPathIgnorePatterns": [
"[/\\\\](build|docs|node_modules|scripts|example)[/\\\\]"
],
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}