-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.23 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
{
"private": true,
"version": "48.0.1",
"name": "expo-community-flipper-root",
"workspaces": [
"example",
"plugin"
],
"installConfig": {
"hoistingLimits": "workspaces"
},
"description": "Flipper Support for Expo Apps",
"scripts": {
"husky": "husky",
"postinstall": "husky install",
"rel": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakobo/expo-community-flipper.git"
},
"author": "Jakob Heuser <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakobo/expo-community-flipper/issues"
},
"homepage": "https://github.com/jakobo/expo-community-flipper#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"release-it": "*",
"release-it-yarn-workspaces": "^2.0.1"
},
"release-it": {
"plugins": {
"release-it-yarn-workspaces": true
},
"npm": false,
"git": {
"commitMessage": "chore: Releases version v${version}"
},
"hooks": {
"before:init": [
"yarn release:before:init || true"
]
}
}
}