-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 892 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
{
"name": "partially-shared-store",
"version": "0.1.6",
"description": "Helper library to implement Partially Shared Store architectures.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "./node_modules/.bin/tsc && cp ./package.json ./README.md dist/",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netsmash/partially-shared-store.git"
},
"keywords": [
"redux",
"store",
"shared"
],
"author": "NetSmash",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.14",
"eslint": "^7.10.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"dependencies": {}
}