-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
77 lines (77 loc) · 2 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
{
"name": "@hirez_io/observer-spy",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/hirezio/observer-spy"
},
"description": "A simple little class that helps making Observable testing a breeze",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"scripts": {
"clean": "rimraf dist",
"commit": "git-cz",
"compile": "tsc -p tsconfig.build.json",
"build": "run-s clean compile",
"generate-toc": "doctoc README.md",
"test": "jest",
"test:watch": "jest --watch",
"test:full": "run-s lint test",
"format:fix": "pretty-quick --staged",
"lint": "eslint . --ext .js,.ts",
"prepublishOnly": "yarn run build",
"postpublish": "yarn run clean",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"observables",
"rxjs",
"spies",
"mocks",
"async methods",
"TypeScript Tests"
],
"author": {
"name": "Shai Reznik",
"company": "HiRez.io"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@hirez_io/jest-single": "1.1.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"all-contributors-cli": "6.20.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"doctoc": "2.1.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.4.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"rxjs": "~7.5.4",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"peerDependencies": {
"rxjs": ">=6.0.0",
"typescript": ">=2.8.1"
}
}