-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.08 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.08 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
{
"name": "@carimus/react-native-theme-provider",
"version": "0.0.0-development",
"description": "A wrapper around @callstack/react-theme-provider with some RN-specific goodies.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"lint": "eslint '{*,{src,docs}/**/*,__{tests,mocks}__/**/*}.{js,jsx}' || true",
"pretty": "prettier --write '{*,{src,docs,.github}/**/*,__{tests,mocks}__/**/*}.{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-theme-provider/issues"
},
"repository": "https://github.com/Carimus/react-native-theme-provider",
"homepage": "https://github.com/Carimus/react-native-theme-provider#readme",
"private": false,
"keywords": [
"react",
"react-native",
"theme",
"provider"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{*,{src,docs}/**/*,__{tests,mocks}__/**/*}.{js,jsx}": [
"prettier --write",
"eslint",
"git add"
],
"{*,{src,docs,.github}/**/*,__{tests,mocks}__/**/*}.{json,md,yml}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@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",
"prettier": "^1.18.2",
"react": "^16.3.0",
"semantic-release": "^15.13.24"
},
"dependencies": {
"@callstack/react-theme-provider": "^3.0.3",
"hoist-non-react-statics": "^3.3.0"
},
"peerDependencies": {
"react": "^16.3.0"
}
}