-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "lossless-throttle-rxjs",
"version": "0.1.0",
"description": "RxJS Lossless Throttling Operator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogisolorzano/rxjs-lossless-throttle.git"
},
"peerDependencies": {
"rxjs": "~7",
"typescript": "~4"
},
"keywords": [],
"author": "Rogi Solorzano",
"license": "ISC",
"bugs": {
"url": "https://github.com/rogisolorzano/rxjs-lossless-throttle/issues"
},
"homepage": "https://github.com/rogisolorzano/rxjs-lossless-throttle#readme",
"dependencies": {
"rxjs": "^7.8.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"prettier": "^2.8.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
}
}