-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "snap-state",
"version": "1.1.7",
"private": false,
"description": "state management in a snap 👌",
"main": "dist/snap-state.js",
"module": "dist/snap-state.module.js",
"umd:main": "dist/snap-state.umd.js",
"source": "src/index.js",
"license": "MIT",
"scripts": {
"build": "microbundle build --raw --jsx React.createElement",
"dev": "microbundle watch --raw --format cjs",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"keywords": [
"react",
"preact",
"hooks",
"hook",
"hoc",
"snap",
"state",
"management"
],
"authors": [
"Andre Venancio <info@andrevenancio.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andrevenancio/snap-state.git"
},
"bugs": {
"url": "https://github.com/andrevenancio/snap-state/issues"
},
"homepage": "https://github.com/andrevenancio/snap-state#readme",
"dependencies": {
"events": "^3.0.0"
},
"devDependencies": {
"microbundle": "^0.15.0",
"braces": ">=2.3.1"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}