-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.26 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
75
76
77
78
79
80
81
82
83
84
{
"name": "rx-use",
"version": "1.8.1",
"description": "",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"homepage": "https://github.com/streamich/rx-use",
"repository": "streamich/rx-use",
"license": "Unlicense",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib/",
"esm/"
],
"scripts": {
"prettier": "prettier --ignore-path .gitignore --write 'src/**/*.{ts,tsx,js,jsx}'",
"prettier:diff": "prettier -l 'src/**/*.{ts,tsx,js,jsx}'",
"prepush": "yarn prettier:diff",
"precommit": "pretty-quick --staged && yarn tslint",
"tslint": "tslint 'src/**/*.{js,jsx,ts,tsx}' -t verbose",
"lint": "yarn tslint",
"commitmsg": "commitlint -E GIT_PARAMS",
"clean": "rimraf lib esm",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --target es6 --outDir esm",
"build": "yarn build:cjs && yarn build:es",
"test": "jest --no-cache --config='jest.config.js'",
"release": "semantic-release",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [],
"dependencies": {},
"peerDependencies": {
"rxjs": "^7"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@storybook/html": "^5.3.19",
"@types/jest": "^27.4.1",
"babel-loader": "^8.1.0",
"husky": "^4.2.5",
"jest": "^27.5.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"rxjs": "^7",
"semantic-release": "^17.0.7",
"ts-loader": "^7.0.5",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"tslint-config-common": "^1.6.0",
"typescript": "^4.6.3"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}