-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.35 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.35 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@carimus/react-native-fonts",
"version": "0.0.0-development",
"description": "Utilities for react native to make using custom fonts easier.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "yarn run test:ios && yarn run test:android",
"test:watch": "yarn run test:ios --watch",
"test:ios": "jest --config jest.ios.json",
"test:android": "jest --config jest.android.json",
"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/Carimus/react-native-fonts/issues"
},
"repository": "https://github.com/Carimus/react-native-fonts",
"homepage": "https://github.com/Carimus/react-native-fonts#readme",
"private": false,
"keywords": [
"react",
"react-native",
"fonts"
],
"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": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.2",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"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-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-plugin-react-native": "^3.7.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.3.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.18.2",
"react": "^16.3.0",
"react-native": "^0.61.1",
"semantic-release": "^15.13.24"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.3.0"
},
"jest": {
"preset": "react-native",
"modulePaths": [
"<rootDir>"
]
}
}