-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.62 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
{
"name": "ublocks-react-native",
"version": "0.0.1",
"private": true,
"description": "a collection of React Native packages by uBlocks.",
"main": "index.js",
"files": [
"@App"
],
"scripts": {
"prepare": "yarn run lerna:link && lerna run prepare",
"lerna:bootstrap": "lerna bootstrap",
"lerna:link": "lerna link && lerna exec -- yarn link",
"lerna:clean": "lerna clean",
"lint": "eslint ."
},
"peerDependencies": {
"react-native-size-matters": "^0.3.0",
"react-native-vector-icons": "^6.6.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/runtime": "^7.7.7",
"@react-native-community/eslint-config": "^0.0.6",
"babel-jest": "^24.9.0",
"eslint": "^5.0.0",
"jest": "^24.9.0",
"lerna": "^3.20.2",
"react": "16.9.0",
"react-native": "0.61.5",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"packages/**/*.js": [
"eslint --fix",
"git add"
],
"tests/**/*.js": [
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ublocks/ublock-react-native.git",
"directory": "packages/name"
},
"keywords": [
"react-native"
],
"author": "Kent Chen",
"license": "ISC",
"bugs": {
"url": "https://github.com/ublocks/ublock-react-native/issues"
},
"homepage": "https://github.com/ublocks/ublock-react-native#readme",
"workspaces": {
"packages": [
"packages/*",
"packages/example/project",
"tests"
]
}
}