-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "clickable-graph-component",
"description": "A react component for clicking nodes and links in a graph",
"version": "0.1.5",
"private": false,
"author": "Charles Cunningham",
"license": "MIT",
"main": "build/index.js",
"module": "build/.index.es.js",
"jsnext:main": "build/index.es.js",
"files": [
"build"
],
"dependencies": {
},
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"peerDependancies": {
"react": "^16.10.2",
"react-dom": "^16.10.2",
"d3": "^5.12.0"
},
"devDependencies": {
"@types/d3": "^5.7.2",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"@types/react": "16.9.9",
"@types/react-dom": "16.9.2",
"jest": "^24.9.0",
"rollup": "^1.26.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}