-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
85 lines (85 loc) · 1.88 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
80
81
82
83
84
85
{
"name": "react-native-monorepo-tools",
"version": "1.2.1",
"description": "Tools to support a Yarn workspaces' React Native monorepo",
"main": "src/index.js",
"files": [
"src/"
],
"keywords": [
"react",
"native",
"react-native",
"monorepo",
"yarn",
"workspaces"
],
"author": "Mazzarolo Matteo",
"license": "AGPL-3.0",
"homepage": "https://github.com/mmazzarolo/react-native-monorepo-tools",
"repository": {
"type": "git",
"url": "https://github.com/mmazzarolo/react-native-monorepo-tools"
},
"engines": {
"node": ">=11.0.0"
},
"scripts": {
"lint": "eslint ./",
"lint:fix": "yarn -- --fix",
"test": "jest",
"test:coverage": "yarn test -- --coverage",
"test:watch": "yarn test -- --watch",
"prepare": "husky install"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.2",
"husky": "^7.0.2",
"jest": "^27.2.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"semantic-release": "^17.4.7"
},
"eslintConfig": {
"extends": [
"prettier",
"eslint:recommended",
"plugin:jest/recommended"
],
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true,
"commonjs": true
}
},
"lint-staged": {
"*.{js,jsx}": [
"yarn lint:fix"
],
"*.md": [
"prettier --write"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git"
]
},
"dependencies": {
"find-root": "^1.1.0",
"glob": "^7.1.7"
}
}