-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.96 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@knodes/rxjs-testing-utils",
"version": "0.0.0",
"description": "A set of helpers to check RxJs behavior. Compatible with jest & jasmine (for now).",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KnodesCommunity/rxjs-testing-utils.git"
},
"bugs": {
"url": "https://github.com/KnodesCommunity/rxjs-testing-utils/issues"
},
"homepage": "https://github.com/KnodesCommunity/rxjs-testing-utils#readme",
"author": "GerkinDev",
"keywords": [
"jest",
"observable",
"rxjs",
"mock",
"stream"
],
"main": "dist/index.js",
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"scripts": {
"build": "npm run build:clean && npm run build:rollup",
"build:clean": "rm -rf dist",
"build:rollup": "NODE_OPTIONS=\"--no-deprecation\" rollup -c rollup.config.js",
"build:watch": "npm run build:clean && npm run build:rollup -- -w",
"lint": "eslint --config .eslintrc.js . --ext .js,.ts . .eslintrc.js",
"lint:commit-message:current": "commitlint -g ./package.json -e ./.git/COMMIT_EDITMSG",
"lint:fix": "npm run lint -- --fix",
"precommit": "npm run lint && npm run test && npm run build",
"test": "jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"exports": {
"./jasmine": {
"import": "./dist/esm/jasmine/src/index.js",
"require": "./dist/cjs/jasmine/src/index.js"
},
"./jest": {
"import": "./dist/esm/jest/src/index.js",
"require": "./dist/cjs/jest/src/index.js"
}
},
"typesVersions": {
"*": {
"jest": [
"dist/typings/jest/src/index.d.ts"
],
"jasmine": [
"dist/typings/jasmine/src/index.d.ts"
],
"generic": [
"dist/typings/generic/src/index.d.ts"
]
}
},
"peerDependenciesMeta": {
"jasmine": {
"optional": true
},
"jest": {
"optional": true
}
},
"peerDependencies": {
"jasmine": "^4.0.0",
"jest": "27.0.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@knodes/dev-utils": "file:../../internal/shared/dev-utils",
"@knodes/eslint-config": "^1.6.3",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jasmine": "~3.10.3",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-sort-export-all": "^1.2.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"rollup": "^2.70.0",
"rxjs": "^7.5.4",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}