-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "react-native-color-picker",
"version": "0.6.0",
"description": "Color picker for react native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instea/react-native-color-picker.git"
},
"author": "instea.co",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/instea/react-native-color-picker/issues"
},
"homepage": "https://github.com/instea/react-native-color-picker#readme",
"devDependencies": {
"@types/react": "^16.9.38",
"@types/react-native": "^0.62.13",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-eslint": "^7.1.1",
"eslint": "6",
"eslint-plugin-react": "^6.8.0",
"typescript": "^3.9.7"
},
"dependencies": {
"prop-types": "^15.5.10",
"tinycolor2": "^1.4.1"
}
}