-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "@iomechs/rn-color-palette",
"version": "0.0.4",
"description": "A color Picker for RN Devs :)",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/jest --coverage",
"publish:lib": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IOMechs/RNColorPalette.git"
},
"keywords": [
"palette",
"color-picker",
"rn-color-palette",
"react-native-color-palette",
"color-palette",
"react-native",
"color",
"ios",
"android",
"iomechs"
],
"author": "Syed Saad Qamar",
"license": "MIT",
"bugs": {
"url": "https://github.com/IOMechs/RNColorPalette/issues"
},
"homepage": "https://github.com/IOMechs/RNColorPalette#readme",
"devDependencies": {
"jest": "24.1.0",
"metro-react-native-babel-preset": "^0.58.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-test-renderer": "^16.8.6"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"testPathIgnorePatterns": [
"<rootDir>/demo/__tests__/App-test.js"
]
}
}