-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.59 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.59 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": "react-native-circular-chart",
"version": "1.0.9",
"description": "circular chart for react-native.",
"main": "index.js",
"module": "index.js",
"react-native": "index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"@react-native-community/bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "yarn build",
"prepare": "bob build",
"prepare:local": "yarn pack",
"build": "tsc",
"release:patch": "release-it patch",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Novsochetra/react-native-circular-chart.git"
},
"keywords": [
"donut-chart",
"circle-chart",
"circular-chart",
"react-native-donut-chart",
"chart",
"react-native"
],
"peerDependencies": {
"react": "*",
"react-native": ">=0.60.0",
"react-native-svg": ">=9"
},
"author": "sochetra NOV <sochetra12.nov@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Novsochetra/react-native-circular-chart/issues"
},
"homepage": "https://github.com/Novsochetra/react-native-circular-chart#readme",
"devDependencies": {
"@react-native-community/bob": "^0.17.1",
"@release-it/conventional-changelog": "^4.0.0",
"@types/react": "^17.0.2",
"@types/react-native": "^0.63.50",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"metro-react-native-babel-preset": "^0.65.1",
"prettier": "^2.2.1",
"react-native-svg": "^12.1.0",
"release-it": "^14.12.1",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {},
"eslintIgnore": [
"node_modules/",
"dist/"
]
}