This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 KB
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
47
48
49
50
51
52
53
{
"name": "rxrelayjs",
"version": "1.0.3",
"description": "Library that provides Relay types for rxjs. These are analogous to Subjects, but stateless and without the ability to call complete() or error().",
"main": "index.js",
"types": "./dist/RxRelay.d.ts",
"scripts": {
"build": "npm run tslint && tsc",
"tslint": "tslint --project tsconfig.json -r tslint.json -r ./node_modules/tslint-microsoft-contrib --fix || true",
"test": "jest"
},
"keywords": [
"LINQ",
"FRP",
"Reactive",
"Events",
"Rx",
"RxJS",
"RxRelay",
"Relay"
],
"author": "Microsoft Corporation",
"license": "MIT",
"devDependencies": {
"@types/jest": "^21.1.2",
"jest": "^21.2.1",
"rxjs": "^6.3.3",
"ts-jest": "^21.1.2",
"tslint": "^5.7.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.5.3"
},
"peerDependencies": {
"rxjs": "^6.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/RxRelayJS"
},
"bugs": {
"url": "https://github.com/Microsoft/RxRelayJS/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}