-
Notifications
You must be signed in to change notification settings - Fork 358
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.68 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.68 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
{
"name": "@kolkov/angular-editor",
"version": "3.0.4",
"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",
"e2e": "ng e2e",
"build-watch:lib": "ng build angular-editor --watch",
"test:lib": "ng test angular-editor",
"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",
"test-ci": "ng test angular-editor --code-coverage --no-watch --browsers=ChromeHeadless && cat ./coverage/angular-editor/lcov.info | coveralls"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.13",
"@angular/common": "^20.3.13",
"@angular/compiler": "^20.3.13",
"@angular/core": "^20.3.13",
"@angular/forms": "^20.3.13",
"@angular/platform-browser": "^20.3.13",
"@angular/platform-browser-dynamic": "^20.3.13",
"@angular/router": "^20.3.13",
"rxjs": "^7.8.2",
"tslib": "^2.4.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.11",
"@angular-eslint/builder": "^20.6.0",
"@angular-eslint/eslint-plugin": "^20.6.0",
"@angular-eslint/eslint-plugin-template": "^20.6.0",
"@angular-eslint/schematics": "^20.6.0",
"@angular-eslint/template-parser": "^20.6.0",
"@angular/cli": "^20.3.11",
"@angular/compiler-cli": "^20.3.13",
"@angular/language-service": "^20.3.13",
"@types/jasmine": "~5.1.0",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^18.19.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"coveralls": "^3.1.1",
"cpx2": "^4.2.0",
"eslint": "^8.57.0",
"jasmine-core": "~5.1.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^20.3.2",
"protractor": "~7.0.0",
"ts-node": "~10.9.0",
"typescript": "~5.8.3",
"webpack": "^5.95.0"
}
}