-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 2.6 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
{
"name": "igniteui-cli-repo",
"version": "1.0.0",
"private": true,
"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": "igniteui-cli"
},
"bugs": {
"url": "https://github.com/IgniteUI/igniteui-cli/issues"
},
"scripts": {
"release": "lerna version --conventional-commits --force-publish=* --yes --no-git-tag-version --no-push",
"deploy": "lerna exec 'npm publish --tag'",
"version": "node ./scripts/versionScript.js",
"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 --report-dir",
"lint": "eslint -c .eslintrc.json ./**/*.ts",
"config-schema": "typescript-json-schema packages/core/types/Config.ts Config -o packages/core/config/Config.schema.json"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"packages/"
],
"exclude": [
"**/*.d.ts",
"output/",
"packages/cli/templates/quickstart/",
"packages/cli/templates/**/files/",
"packages/igx-templates/"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"ts-node/register"
],
"instrument": true,
"cache": false,
"all": true
},
"dependencies": {
"handlebars": "4.7.8"
},
"devDependencies": {
"@inquirer/prompts": "^5.4.0",
"@types/jasmine": "^5.1.4",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"coveralls-next": "^4.2.1",
"browser-sync": "^3.0.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^52.0.0",
"glob": "^11.0.0",
"jasmine": "^5.3.0",
"jasmine-spec-reporter": "^7.0.0",
"lerna": "^8.1.9",
"lerna-changelog": "^2.2.0",
"lite-server": "^2.6.1",
"nyc": "^17.0.0",
"resolve": "^1.22.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tslint": "^5.11.0",
"typescript": "~5.5.4",
"typescript-json-schema": "^0.65.1",
"parse-url": "^8.1.0",
"braces": "^3.0.3",
"highlight.js": "^10.4.1",
"mem": "^4.0.0",
"tar": "^6.2.1",
"micromatch": "^4.0.8",
"trim-newlines": "^3.0.1",
"parse-path": "^5.0.0",
"http-cache-semantics": "^4.1.1"
},
"workspaces": [
"packages/*"
]
}