-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·43 lines (43 loc) · 1.12 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
{
"name": "rxjstore",
"version": "1.0.4",
"description": "A lightweight tool for caching, batching and interface unification in the spirit of RxJS.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/startswithaj/RxJStore"
},
"keywords": [
"RxJS",
"RxJSStore",
"caching",
"batching",
"reactive",
"observables"
],
"author": "Jake Mc <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"link": "npm run build && cd dist && npm link",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"make-badges": "node_modules/.bin/jest-badges-readme",
"make-readme": "npm run test && npm run make-badges",
"prebuild": "echo false > .buildstatus",
"postbuild": "echo true > .buildstatus"
},
"devDependencies": {
"@olavoparno/jest-badges-readme": "1.3.6",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"jest": "^26.6.3",
"ts-jest": "^26.1.4",
"tslint": "^6.1.3",
"typescript": "^3.9.6"
},
"dependencies": {
"node-object-hash": "^2.0.0",
"rxjs": "6.5.3"
}
}