-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 980 Bytes
/
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
{
"name": "robot3-viz",
"version": "1.0.4",
"description": "Visualise Robot3 finite state machines",
"main": "dist/index.js",
"repository": "[email protected]:jbreckmckye/robot3-viz.git",
"author": "jbreckmckye",
"license": "BSD-2-Clause",
"scripts": {
"test": "jest .",
"build": "tsc",
"test-manual": "parcel test/example/index.html --dist-dir tmp"
},
"devDependencies": {
"@types/d3": "^7.1.0",
"@types/dagre": "^0.7.47",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"jest": "^27.4.5",
"parcel": "^2.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"robot3": "^0.2.21",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"d3": "^7.2.1",
"dagre-d3": "0.6.4"
},
"peerDependencies": {
"react": "^17.0.2"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}