-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
59
60
61
{
"name": "async-await-rx",
"version": "7.0.0",
"description": "Extension for rxjs library",
"repository": {
"type": "git",
"url": "git+https://github.com/async-await-rx/core.git"
},
"scripts": {
"prepare": "husky install",
"build": "rm -rf ./dist && tsc --build tsconfig.cjs.json tsconfig.esm.json tsconfig.esm5.json tsconfig.types.json"
},
"files": [
"dist/cjs",
"dist/esm",
"dist/esm5",
"dist/typings",
"LICENSE",
"package.json",
"README.md"
],
"main": "./dist/cjs/public_api.js",
"module": "./dist/esm5/public_api.js",
"es2015": "./dist/esm/public_api.js",
"typings": "./dist/typings/public_api.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./dist/typings/public_api.d.ts",
"es2015": "./dist/esm/public_api.js",
"node": "./dist/cjs/public_api.js",
"require": "./dist/cjs/public_api.js",
"default": "./dist/esm5/public_api.js"
}
},
"keywords": [
"rxjs",
"async await",
"typescript"
],
"author": "Wojciech Krzysztofowicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/async-await-rx/core/issues"
},
"homepage": "https://github.com/async-await-rx/core#readme",
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"rxjs": "^6.5.3 || ^7.4.0"
},
"devDependencies": {
"husky": "^8.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.4"
}
}