-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
80 lines (80 loc) · 2.21 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
{
"private": true,
"version": "0.0.0-development",
"description": "Auto spies monorepo",
"author": {
"name": "Shai Reznik",
"company": "HiRez.io"
},
"license": "MIT",
"scripts": {
"commit": "git-cz",
"build": "lerna run build",
"format:fix": "pretty-quick --staged",
"lerna:publish": "lerna publish from-package --yes",
"lerna:version": "lerna version",
"lerna:version:ci": "lerna version --yes",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"lint:commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"test": "lerna run test",
"test:full": "run-s lint:fix test",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "pnpm format:fix",
"commit-msg": "pnpm lint:commitmsg"
}
},
"keywords": [
"jasmine",
"jasmine-given",
"spies",
"mocks",
"async methods",
"TypeScript Tests"
],
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@ephesoft/webpack.istanbul.loader": "^2.2.0",
"@hirez_io/jasmine-given": "1.0.5",
"@hirez_io/jest-given": "1.1.1",
"@hirez_io/observer-spy": "^2.2.0",
"@types/tapable": "2.2.2",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"all-contributors-cli": "6.19.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"doctoc": "1.4.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"husky": "8.0.3",
"karma": "^6.3.9",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-diff-reporter": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"lerna": "6.5.1",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-loader": "9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.4",
"webpack": "5.76.2"
}
}