-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "rx-observable-state",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"build:w": "tsc -p tsconfig.json -w",
"test": "jest",
"format": "prettier --write .",
"coverage": "jest --collect-coverage",
"lint": "tslint -p tsconfig.json",
"minifyJson": "jq -c . < assets/json1.json > assets/json1.tmp.json && jq -c . < assets/json2.json > assets/json2.tmp.json && mv assets/json1.tmp.json assets/json1.json && mv assets/json2.tmp.json assets/json2.json"
},
"repository": {
"type": "git",
"url": "https://github.com/HuiiBuh/rx-observable-state"
},
"peerDependencies": {
"rxjs": ">6",
"ts-toolbelt": ">7"
},
"keywords": [
"angular",
"rxjs",
"immutable",
"state",
"state management",
"store"
],
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.4",
"jest": "^27.4.5",
"prettier": "2.5.1",
"rxjs": "^7.4.0",
"ts-jest": "^27.1.2",
"ts-toolbelt": "^9.6.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"tslib": "^2.3.1"
}
}