forked from hirezio/auto-spies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.6 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
{
"name": "jasmine-auto-spies",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/hirezio/jasmine-auto-spies"
},
"description": "Create automatic spies from classes in jasmine tests, also for promises and observables",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"clean": "rimraf src/**/*.js* src/**/*.d.ts *.d.ts",
"commit": "git-cz",
"build": "tsc",
"test": "karma start",
"test:watch": "karma start --auto-watch --no-single-run",
"test:full": "yarn run lint&& yarn run test",
"format:fix": "pretty-quick --staged",
"lint": "tslint -p .",
"lint:commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"prepublishOnly": "yarn run build",
"postpublish": "yarn run clean",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn format:fix",
"commit-msg": "yarn lint:commitmsg"
}
},
"keywords": [
"jasmine",
"jasmine-given",
"spies",
"mocks",
"async methods",
"TypeScript Tests"
],
"author": {
"name": "Shai Reznik",
"company": "HiRez.io"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.1",
"@types/deep-equal": "1.0.1",
"@types/jasmine": "^2.5.53",
"@types/jasmine-given": "^2.6.0",
"@types/tapable": "0.2.5",
"@types/webpack": "4.4.11",
"awesome-typescript-loader": "^3.1.3",
"commitizen": "2.10.1",
"core-js": "^2.4.1",
"cz-conventional-changelog": "2.1.0",
"husky": "1.0.0-rc.13",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine": "^2.6.0",
"jasmine-given": "^2.6.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.1",
"karma-jasmine": "1.1.0",
"karma-jasmine-diff-reporter": "1.2.0",
"karma-jasmine-given": "0.1.1",
"karma-mocha-reporter": "2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^3.0.4",
"karma-webpack": "^2.0.3",
"prettier": "1.14.2",
"pretty-quick": "1.6.0",
"rimraf": "2.6.1",
"rxjs": "^6.0.0",
"semantic-release": "^15.6.0",
"travis-deploy-once": "^5.0.0",
"ts-node": "^3.0.6",
"tslint": "5.10.0",
"typescript": "^2.9.2",
"webpack": "2.7.0"
},
"dependencies": {
"deep-equal": "1.0.1"
},
"peerDependencies": {
"jasmine": "^2.6.0",
"rxjs": "^6.0.0",
"typescript": "^2.8.1"
}
}