-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "cardon",
"version": "1.0.3",
"private": false,
"description": "Create reusable React cards, pop-ups or modals with asynchronous functionality",
"keywords": [
"react",
"alert",
"card",
"modal",
"reusable",
"popup",
"manager"
],
"homepage": "https://github.com/hepter/cardon",
"bugs": {
"url": "https://github.com/hepter/cardon/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hepter/cardon.git"
},
"license": "MIT",
"author": "Mustafa Kuru mustafakuru042@gmail.com",
"main": "lib/index.js",
"source": "src/index.ts",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "tsc --noEmit false",
"doc": "typedoc src/index.ts"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/node": ">=12.0.0",
"@types/react": ">=16.8.0",
"@types/react-dom": ">=16.8.0",
"typedoc": "0.20.36",
"typescript": "^4.0.0"
}
}