-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.47 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@betomorrow/micro-stores",
"version": "0.0.16",
"description": "A light state management library featuring observables and immutability",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/micro-stores.esm.js",
"files": [
"dist",
"src"
],
"keywords": [
"state",
"observable",
"typescript",
"react",
"hook"
],
"scripts": {
"test": "tsdx test --coverage",
"test:watch": "tsdx test --watchAll",
"example": "ts-node examples/paginatedStore.ts",
"lint": "tsdx lint",
"build": "tsdx build",
"prepublishOnly": "tsdx build && tsdx test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeTomorrow/micro-stores.git"
},
"homepage": "https://github.com/BeTomorrow/micro-stores#readme",
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"engines": {
"node": ">=10"
},
"author": "BeTomorrow",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"micro-observables": "^1.7.2",
"micro-signals": "^2.4.0",
"ts-node": "^10.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "^17.0.17",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.5",
"@types/uuid": "^8.3.1",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"ts-toolbelt": "^9.5.13",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"bugs": {
"url": "https://github.com/BeTomorrow/micro-stores/issues"
},
"directories": {
"test": "test"
}
}