-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "universal-rxjs-ajax",
"description": "Makes rxjs's ajax available in Node.js",
"version": "2.0.4",
"type": "module",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"main": "dist/universal-rxjs-ajax.cjs",
"umd:main": "dist/universal-rxjs-ajax.umd.js",
"module": "dist/universal-rxjs-ajax.module.js",
"exports": {
"node": "./dist/universal-rxjs-ajax.cjs",
"import": "./dist/universal-rxjs-ajax.cjs.modern.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mcmunder/universal-rxjs-ajax.git"
},
"keywords": [
"rxjs",
"observable",
"ajax",
"universal",
"isomorphic"
],
"author": "mcmunder",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcmunder/universal-rxjs-ajax/issues"
},
"homepage": "https://github.com/mcmunder/universal-rxjs-ajax",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"microbundle": "^0.15.1",
"prettier": "^2.7.1",
"rxjs": "^7.5.6",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"dependencies": {
"xhr2": "^0.2.1"
},
"peerDependencies": {
"rxjs": ">=7.5.6"
}
}