-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "obgen",
"version": "0.5.0",
"description": "Javascript Observables implemented with async generators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./asyncObservable": "./dist/asyncObservable.js",
"./bufferedIterator": "./dist/bufferedIterator.js",
"./multicastIterator": "./dist/multicastIterator.js",
"./observable": "./dist/observable.js",
"./deferredObservable": "./dist/deferredObservable.js",
"./feature": "./feature/index.js",
"./package.json": "./package.json"
},
"scripts": {
"prepublish": "tsc -p config/tsconfig.json",
"build": "tsc -p config/tsconfig.json",
"check_prettier": "prettier --check .",
"test": "yarn run jest",
"ci": "yarn check_prettier && yarn build && yarn test"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.186",
"@types/node": "^20.1.4",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.4.1",
"babel-loader": "9.1.3",
"eslint": "^7.11.0",
"eslint-plugin-flowtype": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-testing-library": "^6.1.0",
"jest": "29.5.0",
"jest-circus": "^29.4.1",
"jest-resolve": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"prompts": "2.4.2",
"resolve": "1.22.2",
"resolve-url-loader": "^5.0.0",
"semver": "7.5.4",
"ts-node": "^10.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"url-loader": "4.1.1"
},
"author": "Felipe Lima",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/felipecsl/obgen.git"
},
"keywords": [
"observable",
"reactive",
"stream",
"generator",
"async"
],
"bugs": {
"url": "https://github.com/felipecsl/obgen/issues"
},
"homepage": "https://github.com/felipecsl/obgen#readme"
}