-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
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
{
"name": "@bearbytes/react-zeno",
"version": "1.1.1",
"description": "The React companion to Zeno, a Redux implementation optimized for Typescript.",
"keywords": [
"typescript",
"typesafe",
"redux",
"react",
"hooks"
],
"author": "pancomputationalist@mailbox.org",
"license": "ISC",
"homepage": "https://github.com/bearbytes/react-zeno",
"repository": "https://github.com/bearbytes/react-zeno.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@bearbytes/zeno": "^1.1.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.25",
"jest": "^25.1.0",
"np": "^6.2.0",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"scripts": {
"prepare": "rm -rf dist && tsc",
"test": "jest",
"release": "np --no-yarn"
}
}