-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 854 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
{
"name": "@bearbytes/zeno",
"version": "1.1.0",
"description": "A Redux implementation optimized for Typescript.",
"keywords": [
"typescript",
"typesafe",
"redux"
],
"author": "pancomputationalist@mailbox.org",
"license": "ISC",
"homepage": "https://github.com/bearbytes/zeno",
"repository": "https://github.com/bearbytes/zeno.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"immer": "^6.0.2"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"np": "^6.2.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"scripts": {
"prepare": "rm -rf dist && tsc",
"test": "jest",
"release": "np --no-yarn"
}
}