forked from matthewp/react-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "react-robot",
"version": "0.2.3",
"description": "React hooks for Robot finite state machines",
"main": "machine.js",
"module": "machine.js",
"type": "module",
"scripts": {
"server": "http-server -p 1965",
"test": "node-qunit-puppeteer http://localhost:1965/test/test.html 10000"
},
"files": [
"machine.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/matthewp/react-robot.git"
},
"keywords": [
"React",
"Finite state machine"
],
"author": "Matthew Phillips <matthew@matthewphillips.info>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/matthewp/react-robot/issues"
},
"homepage": "https://github.com/matthewp/react-robot#readme",
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0",
"robot3": "^0.2.3"
},
"dependencies": {
"robot-hooks": "^0.3.6"
},
"devDependencies": {
"http-server": "^0.11.1",
"node-qunit-puppeteer": "^1.0.13",
"robot3": "^0.2.3"
}
}