-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 931 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
{
"name": "staterino",
"version": "2.0.0",
"description": "hook based state management",
"source": "dist/staterino.js",
"main": "dist/staterino.min.js",
"unpkg": "dist/staterino.es5.min.js",
"module": "dist/staterino.min.js",
"repository": "https://github.com/fuzetsu/staterino.git",
"author": "Daniel Loomer <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "node ./build.js && jest",
"test": "jest --watch"
},
"devDependencies": {
"@testing-library/preact": "^2.0.1",
"@types/jest": "^26.0.20",
"buble": "^0.20.0",
"eslint": "^7.3.0",
"jest": "^26.6.3",
"mergerino": "^0.4.0",
"preact": "^10.5.12",
"terser": "^4.8.0"
},
"keywords": [
"state",
"react",
"preact",
"hooks",
"merge",
"store"
],
"dependencies": {
"@types/mergerino": "^0.4.0"
},
"types": "types/staterino.d.ts"
}