forked from newyankeecodeshop/state-actuator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "state-actuator",
"version": "0.9.6",
"description": "A state management library that models state change as an iterable",
"main": "lib/index.js",
"type": "module",
"exports": {
".": "./lib/index.js",
"./lib/react": "./lib/react/index.js",
"./react": "./lib/react/index.js"
},
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"examples"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "mocha"
},
"keywords": [
"state",
"predictable",
"flux",
"functional",
"immutable",
"iterable",
"generator"
],
"author": "Andrew Goodale <[email protected]>",
"license": "MIT",
"dependencies": {
"event-iterator": "^2.0.0"
},
"devDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/node": "^15.0.3",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"hoist-non-react-statics": "^3.3.2",
"mocha": "^9.2.0",
"prettier": "2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sinon": "^11.1.1",
"typescript": "^4.5.0"
},
"engines": {
"node": ">=12.17"
}
}