-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.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
{
"version": "3.0.1",
"description": "Use ts-mocks to create Mock<T> objects for during Unit Tests",
"author": {
"name": "Johan Herscheid <[email protected]>"
},
"scripts": {
"build": "tsc",
"test": "karma start && karma start karma.conf.es2015.ts"
},
"keywords": [
"typescript",
"mocking"
],
"license": "MIT",
"name": "ts-mocks",
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib/",
"README.md"
],
"repository": {
"type": "git",
"url": "git://github.com/jjherscheid/ts-mocks.git"
},
"devDependencies": {
"@types/jasmine": "^2.5.53",
"@types/node": "^8.0.17",
"jasmine-ts": "^0.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^4.1.1",
"ts-node": "^4.1.0",
"typescript": "~3.0.0"
}
}