-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "ngentest",
"version": "2.2.4",
"description": "Angular Unit Test Generator For Components, Directive, Services, and Pipes",
"main": "./lib/index.js",
"license": "MIT",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"start": "node api/express-server.js",
"test": "node --test test/*.spec.js && node test/index.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"bin": {
"gentest": "./cli.js",
"ngentest": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allenhwkim/ng-gen-test.git"
},
"keywords": [
"angular",
"generate",
"unit",
"test",
"cli"
],
"author": "Allen Kim <allenhwkim@gmail.com>",
"bugs": {
"url": "https://github.com/allenhwkim/ngentest/issues"
},
"homepage": "https://github.com/allenhwkim/ngentest#readme",
"dependencies": {
"acorn": "^7.4.1",
"check-engines": "^1.5.0",
"ejs": "^3.1.9",
"glob": "^10.3.3",
"indent.js": "^0.3.4",
"typescript": "^3.7.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"cors": "^2.8.5",
"esbuild": "^0.19.2",
"express": "^4.18.2",
"uuid": "^9.0.0"
}
}