This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.81 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
{
"name": "react-use-d3",
"version": "0.1.6",
"description": "A small React hook to use D3 in declarative way, for data visualization & flexible animation.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"tsc": "tsc -p . --noEmit",
"tsc:d": "tsc -p . --outDir lib -d --emitDeclarationOnly",
"prepublishOnly": "rimraf lib && npm run build && npm run tsc:d",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook"
},
"peerDependencies": {
"d3": "^4.0.0 || ^6.7.0",
"react": "^16.8.0 || ^17.0.2"
},
"dependencies": {
"query-selector": "2.0.0",
"style-attr": "1.3.0"
},
"devDependencies": {
"@babel/core": "7.13.0",
"@babel/preset-env": "7.13.0",
"@babel/preset-typescript": "7.13.0",
"@rollup/plugin-typescript": "8.2.5",
"@storybook/react": "6.2.9",
"@types/d3": "6.7.5",
"@types/jest": "26.0.24",
"@types/react": "17.0.33",
"babel-jest": "27.0.6",
"babel-loader": "8.2.2",
"d3": "6.7.0",
"jest": "27.0.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"rollup": "2.50.6",
"tslib": "2.2.0",
"typescript": "4.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/react-use-d3.git"
},
"keywords": [
"react",
"d3",
"hooks",
"visualization",
"animation",
"svg",
"css",
"transition"
],
"author": "inokawa <stratoooo-taster@yahoo.co.jp> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/react-use-d3/issues"
},
"homepage": "https://github.com/inokawa/react-use-d3#readme"
}