-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 1.38 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
{
"name": "rxjs-observable-store",
"version": "3.1.0",
"description": "A state management solution implemented using RxJS to mimic Redux architecture.",
"keywords": [
"rxjs",
"observable",
"store",
"redux",
"angular",
"state management"
],
"license": "MIT",
"author": {
"name": "George Byte",
"url": "https://georgebyte.com"
},
"homepage": "https://georgebyte.com/state-management-in-angular-with-observable-store-services/",
"repository": {
"type": "git",
"url": "git+https://github.com/georgebyte/rxjs-observable-store.git"
},
"bugs": {
"url": "https://github.com/georgebyte/rxjs-observable-store/issues"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"typings": "./lib/esm/index.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf lib/**/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepare": "npm run build"
},
"files": [
"lib/"
],
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "/src/.*\\.spec\\.ts$"
},
"dependencies": {
"ts-toolbelt": "~9.6.0"
},
"peerDependencies": {
"rxjs": "7.x"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.5.0",
"rimraf": "^3.0.2",
"rxjs": "7.x",
"ts-jest": "~27.1.3",
"typescript": "~4.5.5"
}
}