-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 2.83 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
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
102
103
104
105
106
107
108
109
110
111
{
"name": "igniteui-cli",
"version": "14.3.13",
"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",
"scripts": {
"build": "node ./node_modules/typescript/lib/tsc.js && npm run config-schema",
"build-pack": "node ./node_modules/typescript/lib/tsc.js -p tsconfig-pack.json && npm run config-schema",
"pretest": "npm run lint && npm run build",
"test": "nyc npm run jasmine",
"jasmine": "node spec/jasmine-runner.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint --project tsconfig.json",
"config-schema": "typescript-json-schema packages/core/types/Config.ts Config -o packages/core/config/Config.schema.json"
},
"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": "~19.0.14313",
"@igniteui/cli-core": "~14.3.13",
"@inquirer/prompts": "^5.4.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": "^19.0.0",
"@angular-devkit/schematics": "^19.0.0",
"@schematics/angular": "~19.0.0",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.5.5",
"browser-sync": "^3.0.3",
"coveralls-next": "^4.2.1",
"jasmine": "^5.3.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",
"tslint": "~6.1.0",
"typescript-json-schema": "^0.65.1"
},
"ng-update": {
"migrations": "./migrations/migration-collection.json"
}
}