-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.29 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.29 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
{
"name": "react-simple-network-graph",
"version": "0.6.0",
"description": "A react component for interactive network graph diagrams.",
"repository": "https://github.com/andypea/react-simple-network-graph",
"bugs": "https://github.com/andypea/react-simple-network-graph/issues",
"homepage": "https://andypea.github.io/react-simple-network-graph",
"main": "dist/react-simple-network-graph.cjs",
"type": "module",
"files": [
"package.json",
"README.md",
"CHANGELOG.md",
"dist/react-simple-network-graph.d.ts",
"dist/react-simple-network-graph.js",
"dist/react-simple-network-graph.csj",
"src"
],
"types": "./dist/react-simple-network-graph.d.ts",
"exports": {
"import": "./dist/react-simple-network-graph.js",
"require": "./dist/react-simple-network-graph.csj"
},
"scripts": {
"test": "jest",
"prettier": "prettier --check --ignore-path=.gitignore .",
"lint": "eslint --ignore-path=.gitignore --ext=js,jsx,ts,tsx .",
"build": "rollup --config",
"type-check": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"include-local-gitconfig": "git config --local include.path ../.gitconfig",
"prepublishOnly": "jest && git diff --exit-code && git diff --cached --exit-code && git restore . && node scripts/gitTagMatchesPackageVersion.js && git clean -fdx && npm ci && npm run build"
},
"keywords": [
"react",
"network",
"graph",
"svg",
"visualisation",
"interactive",
"diagram"
],
"author": {
"name": "Andrew Punnett",
"email": "andrew.punnett@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.2",
"@storybook/addon-a11y": "^7.0.8",
"@storybook/addon-essentials": "^7.0.8",
"@storybook/addon-interactions": "^7.0.8",
"@storybook/addon-links": "^7.0.8",
"@storybook/blocks": "^7.0.8",
"@storybook/react": "^7.0.8",
"@storybook/react-webpack5": "^7.0.8",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "2.8.8",
"rollup": "^3.21.4",
"rollup-plugin-dts": "^5.3.0",
"storybook": "^7.0.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"prop-types": "^15.8.1"
}
}