-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.3 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.3 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "igniteui-cli",
"version": "15.0.0-rc.0",
"description": "CLI tool for creating Ignite UI projects",
"keywords": [
"CLI",
"Ignite UI"
],
"author": "Infragistics",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IgniteUI/igniteui-cli.git",
"directory": "packages/cli"
},
"bin": {
"igniteui": "bin/execute.js",
"ig": "bin/execute.js"
},
"bugs": {
"url": "https://github.com/IgniteUI/igniteui-cli/issues"
},
"main": "lib/cli.js",
"files": [
"ignite-ui-cli.txt",
"bin/*",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/config/defaults.json",
"lib/config/Config.schema.json",
"scripts/**/*.js",
"templates/**/*.d.ts",
"templates/**/*.js",
"templates/**/files/**/*",
"templates/**/generate/**/*",
"templates/**/*.json",
"migrations/**/*.d.ts",
"migrations/**/*.js",
"migrations/**/*.json",
"schematics/**/*.d.ts",
"schematics/**/*.js",
"schematics/**/*.json"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"lib/"
],
"exclude": [
"**/*.d.ts",
"output/",
"templates/**/files/"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"ts-node/register"
],
"instrument": true,
"cache": false,
"all": true
},
"dependencies": {
"@igniteui/angular-templates": "~21.1.1500-rc.0",
"@igniteui/cli-core": "~15.0.0-rc.0",
"@igniteui/mcp-server": "~15.0.0-rc.0",
"@inquirer/prompts": "^7.9.0",
"@types/yargs": "^17.0.33",
"chalk": "^5.3.0",
"glob": "^11.0.0",
"open": "^10.1.0",
"resolve": "^1.22.8",
"through2": "^4.0.2",
"typescript": "~5.5.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@angular-devkit/core": "^21.0.0",
"@angular-devkit/schematics": "^21.0.0",
"@schematics/angular": "^21.0.0",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.5.5",
"browser-sync": "^3.0.3",
"coveralls-next": "^4.2.1",
"jasmine": "^5.12.0",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^17.0.0",
"rxjs": "~7.8.1",
"source-map-support": "^0.5.21",
"ts-node": "~10.9.2",
"typescript-json-schema": "^0.65.1"
},
"ng-update": {
"migrations": "./migrations/migration-collection.json"
}
}