-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.78 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
71
{
"name": "statechart-viz",
"version": "0.1.3",
"description": "A React component for statechart visualisation.",
"private": false,
"author": {
"name": "Serhii Palash",
"email": "[email protected]",
"url": "https://github.com/serhiipalash"
},
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.es.js",
"files": [
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react",
"react-component",
"statechart",
"visualizer",
"xstate",
"scxml",
"visualisation",
"viz"
],
"homepage": "https://github.com/serhiipalash/statechart-viz#readme",
"repository": {
"type": "git",
"url": "git://github.com/serhiipalash/statechart-viz.git"
},
"bugs": {
"url": "http://github.com/serhiipalash/statechart-viz/issues"
},
"scripts": {
"dev": "cd sandbox && npm start",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"clean": "git clean -fdx"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"rollup": "^2.43.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"styled-components": "^5.2.1",
"xstate": "4.6.7"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}