forked from Carimus/metro-symlinked-deps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.86 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
86
87
88
89
{
"name": "metro-symlinked-deps",
"version": "2.0.0",
"description": "Metro bundler configuration utilities to workaround a lack of symlink support.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "yarn run test --watch",
"lint": "eslint '{*,{src,docs}/**/*,__{tests,mocks,support}__/**/*}.{js,jsx}' || true",
"pretty": "prettier --write '{*,{src,docs,.github}/**/*,__{tests,mocks,support}__/**/*}.{json,md,yml,js,jsx}'",
"fixcode": "yarn run pretty",
"semantic-release": "semantic-release",
"release": "yarn run semantic-release",
"release-ci": "echo 'unsafe-perm = true' > ./.npmrc && yarn run semantic-release && rm -rf ./.npmrc",
"commit": "git-cz"
},
"bugs": {
"url": "https://github.com/alexbrazier/metro-symlinked-deps/issues"
},
"repository": "https://github.com/alexbrazier/metro-symlinked-deps",
"homepage": "https://github.com/alexbrazier/metro-symlinked-deps#readme",
"private": false,
"keywords": [
"metro",
"react-native",
"jest-haste-map"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{*,{src,docs}/**/*,__{tests,mocks,support}__/**/*}.{js,jsx}": [
"prettier --write",
"eslint",
"git add"
],
"{*,{src,docs,.github}/**/*,__{tests,mocks,support}__/**/*}.{json,md,yml}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-eslint": "^10.0.3",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.3.0",
"metro-config": "^0.63.0",
"prettier": "^1.18.2",
"semantic-release": "^15.13.24"
},
"dependencies": {
"chalk": "^4.1.0",
"escape-string-regexp": "^4.0.0",
"get-dev-paths": "^0.1.1"
},
"peerDependencies": {
"metro-config": "*"
},
"engines": {
"node": ">=10"
}
}