-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1013 Bytes
/
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
{
"name": "jasmine-mock-factory",
"version": "3.0.0",
"description": "A Jasmine helper for creating mocked classes",
"license": "MIT",
"author": "Chuanqi Sun",
"scripts": {
"start": "npm run build && npm run test",
"start:once": "npm run build && npm run test:once",
"build": "tsc",
"test:once": "karma start karma.conf.js --single-run",
"test": "karma start karma.conf.js"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/henrysun918/jasmine-mock-factory.git"
},
"dependencies": {
"@types/jasmine": "~3.3.10"
},
"peerDependencies": {
"jasmine-core": ">=2.9.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"jasmine-core": "~3.3.0",
"karma": "~4.0.1",
"karma-chrome-launcher": "~2.2.0",
"karma-jasmine": "~2.0.1",
"karma-typescript": "^4.0.0",
"typescript": "~3.3.3333"
},
"keywords": [
"mock",
"moq",
"jasmine",
"mocking",
"unit",
"test",
"testing"
]
}