-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 861 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
{
"name": "ts-fp-di-rxjs",
"version": "0.0.6",
"description": "Utils for RxJS for working with ts-fp-di",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:darky/ts-fp-di-rxjs.git"
},
"keywords": [
"ts-fp-di",
"rxjs"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && node --test dist/test.js",
"test:dev": "node -r ts-node/register/transpile-only test.ts"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"author": "Vladislav Botvin",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.16",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
},
"peerDependencies": {
"rxjs": "^7.8.1",
"ts-fp-di": "^0.19.0"
}
}