-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
{
"name": "@hyperjumptech/universal-update-checker",
"version": "0.0.4",
"description": "React component to check if there is a new version of the app",
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"clean": "rm -rf build && rm -rf dist",
"build-module": "npm run clean && NODE_ENV=production babel src --out-dir build && publish-flat -f build -o dist",
"publish-module": "npm run build-module && cd dist && npm publish",
"test": "npm run clean && jest src",
"lint": "eslint src && prettier --check \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/hyperjumptech/universal-update-checker.git"
},
"keywords": [
"react",
"react-native"
],
"author": "Nico Prananta <nico@hyperjump.tech>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hyperjumptech/universal-update-checker.git"
},
"homepage": "https://github.com/hyperjumptech/universal-update-checker.git",
"peerDependencies": {
"react": "^16.8.0"
},
"jest": {
"preset": "react-native",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/dist/",
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@react-native-community/eslint-config": "^0.0.5",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/jest-native": "^3.0.2",
"@testing-library/react": "^9.2.0",
"@testing-library/react-native": "^4.0.12",
"babel-jest": "^24.9.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "1.19.1",
"publish-flat": "^1.2.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-native": "0.61.1",
"react-test-renderer": "16.9.0",
"sync-glob": "^1.4.0"
}
}