-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 978 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": "memoizee-rx",
"version": "1.0.8",
"description": "Use memoizee with rxjs Observables",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"preversion": "npm run build",
"postversion": "publish-to-git --force"
},
"author": "Damian Kaczmarek <[email protected]>",
"license": "UNLICENSED",
"private": true,
"peerDependencies": {
"memoizee": "^0.4.14",
"rxjs": "^6.4.0"
},
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/memoizee": "^0.4.2",
"jest": "^23.1.0",
"memoizee": "^0.4.14",
"prettier": "^1.16.4",
"publish-to-git": "^1.1.7",
"rxjs": "^6.4.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
},
"files": [
"lib/**/*"
]
}