-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "rxjs-for-await",
"version": "1.0.0",
"description": "Add async-await for-await loop support to RxJS Observables",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"es2015": "./dist/esm/index.js",
"types": "./dist/types/src/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.esm.json && tsc && tsc -p tsconfig.types.json",
"test": "jest",
"test:jest": "jest",
"test:tsc": "jest -c jest.tsc.config.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"preversion": "git fetch --all",
"version": "npm run build && npm run changelog && git add ./CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benlesh/rxjs-for-await.git"
},
"keywords": [
"RxJS",
"Observable",
"async-await",
"AsyncIterable",
"for-await"
],
"author": "Ben Lesh <ben@benlesh.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benlesh/rxjs-for-await/issues"
},
"homepage": "https://github.com/benlesh/rxjs-for-await#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^27.0.2",
"@types/node": "^13.9.1",
"conventional-changelog-cli": "^2.1.1",
"jest": "^27.3.1",
"jest-runner-tsc": "^1.6.0",
"prettier": "^1.19.1",
"rxjs": "7.4.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"peerDependencies": {
"rxjs": "^7.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}