-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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
{
"name": "jasmine-unit-test-generator",
"version": "1.4.0",
"description": "Generate initial unit test with all class dependencies mocked. Can be extended with custom handlers to cover move advanced cases",
"keywords": [
"jasmine",
"unit test generator",
"angular unit test"
],
"main": "lib/public-api.js",
"scripts": {
"build:dev": "tsc --watch",
"build": "tsc",
"test": "jasmine --require=ts-node/register"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:FDIM/jasmine-unit-test-generator.git"
},
"author": "FDIM",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.10",
"@types/jasmine": "^5.1.7",
"jasmine": "^5.6.0",
"ts-node": "^10.9.2",
"typescript": "*"
},
"bin": {
"jasmine-unit-test-generator": "./lib/cli.js"
},
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"typescript": "*"
},
"optionalDependencies": {
"@angular/common": "*",
"@angular/core": "*",
"@angular/router": "*",
"rxjs": "*"
}
}