-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
91 lines (91 loc) · 2.29 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
90
91
{
"name": "react-native-rating",
"version": "2.0.4",
"description": "A stars rating component for react-native built with the Animated API",
"main": "./src/rating.js",
"scripts": {
"test": "jest",
"prepush": "npm run test",
"lintfix": "eslint --fix src storybook",
"format": "prettier-eslint --write \"src/**/*.js\" \"storybook/**/*.js\"",
"precommit": "lint-staged",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f0rr0/react-native-rating.git"
},
"author": "Siddharth Jain",
"keywords": [
"react-native-component",
"react-component",
"react-native",
"stars",
"rating",
"favourite",
"favorite",
"stars-rating"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/f0rr0/react-native-rating/issues"
},
"homepage": "https://github.com/f0rr0/react-native-rating#readme",
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-react-native": "^2.1.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-react-native": "^2.3.2",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.0",
"prettier-eslint-cli": "^4.1.1",
"react-test-renderer": "16.0.0-alpha.6"
},
"peerDependencies": {
"react": ">=16.0.0-alpha.6",
"react-native": ">=0.44.3"
},
"jest": {
"preset": "react-native",
"verbose": true,
"modulePaths": [
"<rootDir>/src/"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/react-native/Libraries/react-native/",
"<rootDir>/node_modules/react-native/packager/"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native/*)"
],
"testPathIgnorePatterns": [
"node_modules"
]
},
"lint-staged": {
"src/**/*.js": [
"prettier-eslint --write",
"git add"
],
"storybook/**/*.js": [
"prettier-eslint --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}