-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
79 lines (79 loc) · 2.05 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
{
"name": "ts-mockito",
"version": "2.6.0",
"description": "Mocking library for TypeScript",
"main": "lib/ts-mockito.js",
"typings": "lib/ts-mockito",
"scripts": {
"compile": "yarn test:compile-check && yarn rimraf 'lib/*' && ./node_modules/.bin/tsc -p ./src",
"test": "npm run test:jest && npm run test:karma",
"test:watch": "npm run test:jest:watch",
"test:coverage": "jest --coverage --maxWorkers=4",
"test:jest": "jest",
"test:jest:watch": "jest --watch",
"test:karma": "./node_modules/.bin/karma start karma.conf.js --single-run",
"test:karma:watch": "./node_modules/.bin/karma start karma.conf.js",
"test:compile-check": "tsc --noEmit -p tsconfig.json",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NagRock/ts-mockito"
},
"keywords": [
"mock",
"typescript",
"tests",
"fake",
"stub",
"spy",
"javascript"
],
"devDependencies": {
"@types/jasmine": "^3.7.7",
"@types/lodash": "^4.14.170",
"@types/node": "^15.14.0",
"babel-polyfill": "^6.26.0",
"jasmine-core": "^3.7.1",
"jest": "^27.0.6",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^4.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.5.1",
"karma-typescript-preprocessor": "^0.4.0",
"puppeteer": "^10.1.0",
"rimraf": "^3.0.2",
"ts-helpers": "^1.1.2",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"dependencies": {
"lodash": "^4.17.5"
},
"resolutions": {
"write-file-atomic": "2.4.1"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"lcov"
]
}
}