forked from johanblumenberg/ts-mockito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 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
{
"name": "ts-mockito",
"version": "2.2.8",
"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",
"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",
"lint": "./node_modules/tslint/bin/tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"prepare": "npm run compile"
},
"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": "^2.6.0",
"@types/lodash": "^4.14.78",
"@types/node": "^8.0.46",
"babel-polyfill": "^6.26.0",
"jasmine-core": "^2.8.0",
"jest": "^21.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^3.0.8",
"karma-typescript-preprocessor": "^0.3.1",
"phantomjs": "^2.1.7",
"puppeteer": "^0.12.0",
"ts-helpers": "^1.1.2",
"ts-jest": "^21.1.3",
"tslint": "^5.7.0",
"typescript": "^2.5.3"
},
"dependencies": {
"lodash": "^4.17.4"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"mapCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"lcov"
]
}
}