forked from NagRock/ts-mockito
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 2.1 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": "@johanblumenberg/ts-mockito",
"version": "1.0.45",
"description": "Mocking library for TypeScript",
"main": "lib/ts-mockito.js",
"typings": "lib/ts-mockito",
"scripts": {
"compile": "rm -rf '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 --skip-tags nodejs",
"test:karma:watch": "./node_modules/.bin/karma start karma.conf.js",
"lint": "./node_modules/tslint/bin/tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/johanblumenberg/ts-mockito"
},
"keywords": [
"mock",
"typescript",
"tests",
"fake",
"stub",
"spy",
"javascript"
],
"devDependencies": {
"@types/jasmine": "^2.6.0",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.104",
"@types/node": "^8.0.46",
"babel-polyfill": "^6.26.0",
"jasmine-core": "^5.0.0",
"jest": "^26.0.0",
"karma": "^6.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^5.0.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-jasmine-spec-tags": "^2.0.0",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.2.0",
"karma-typescript-preprocessor": "^0.4.0",
"ts-expect": "^1.3.0",
"ts-helpers": "^1.1.2",
"ts-jest": "^26.0.0",
"tslint": "^5.7.0",
"typescript": "^3.4.5"
},
"dependencies": {
"lodash": "^4.17.20"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"lcov"
]
}
}