-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "@ngx-extensions/rxjs-extensions",
"version": "0.0.0",
"description": "Utility functions and operators for rxjs",
"main": "index.js",
"scripts": {
"build": "bash ./scripts/build.sh",
"lint:check": "tslint {src,test}/**/*.ts",
"lint:fix": "tslint --fix {src,test}/**/*.ts",
"format:check": "prettier -c {src,test,config,scripts}/**/*",
"format:fix": "prettier --write {src,test,config,scripts}/**/*",
"changelog:bump": "conventional-changelog -i CHANGELOG.md -s -p angular",
"changelog:next": "conventional-changelog -i CHANGELOG.md -s -u angular"
},
"engines": {
"npm": ">=2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngx-extensions/rxjs-extensions.git"
},
"keywords": [
"Rx",
"RxJS",
"ReactiveX",
"ReactiveExtensions",
"Streams",
"Observables",
"Observable"
],
"author": {
"name": "José Toledo Navarro",
"email": "[email protected]",
"url": "https://github.com/jotatoledo"
},
"dependencies": {},
"peerDependencies": {
"rxjs": "^6.4.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"conventional-changelog-cli": "^2.0.12",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"markdownlint-cli": "^0.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"rollup": "^1.8.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.0.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ngx-extensions/rxjs-extensions/issues"
},
"homepage": "https://github.com/ngx-extensions/rxjs-extensions#readme"
}