-
Notifications
You must be signed in to change notification settings - Fork 352
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.19 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
{
"name": "@kolkov/angular-editor",
"version": "3.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build angular-editor-app",
"build-prod": "ng build angular-editor-app --configuration production",
"test": "ng test",
"lint:lib": "ng lint angular-editor",
"build-watch:lib": "ng build angular-editor --watch",
"test:lib": "ng test angular-editor",
"test-ci": "ng test angular-editor --coverage",
"build:lib": "ng-packagr -p projects/angular-editor/ng-package.json",
"build-prod:lib": "ng-packagr -p projects/angular-editor/ng-package.json -c projects/angular-editor/tsconfig.lib.prod.json",
"publish:lib": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/angular-editor --tag latest",
"publish:lib:next": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/angular-editor --tag next",
"copy:readme": "cpx README.md dist/angular-editor",
"copy:changelog": "cpx CHANGELOG.md dist/angular-editor",
"copy:license": "cpx LICENSE dist/angular-editor"
},
"private": true,
"dependencies": {
"@angular/animations": "^22.0.0",
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/platform-browser-dynamic": "^22.0.0",
"@angular/router": "^22.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.4.0",
"zone.js": "~0.16.2"
},
"devDependencies": {
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@angular/language-service": "^22.0.0",
"@angular-eslint/builder": "^22.0.0",
"@angular-eslint/eslint-plugin": "^22.0.0",
"@angular-eslint/eslint-plugin-template": "^22.0.0",
"@angular-eslint/schematics": "^22.0.0",
"@angular-eslint/template-parser": "^22.0.0",
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.9",
"angular-eslint": "^22.0.0",
"typescript-eslint": "^8.62.0",
"cpx": "^1.5.0",
"eslint": "^10.6.0",
"jsdom": "^29.1.1",
"ng-packagr": "^22.0.0",
"typescript": "~6.0.2",
"vitest": "^4.0.8"
}
}