-
Notifications
You must be signed in to change notification settings - Fork 360
/
package.json
68 lines (68 loc) · 2.49 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
{
"name": "@kolkov/angular-editor",
"version": "3.0.0-beta.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build angular-editor-app",
"build-prod": "ng build --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 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": "^13",
"@angular/common": "^13",
"@angular/compiler": "^13",
"@angular/core": "^13",
"@angular/forms": "^13",
"@angular/platform-browser": "^13",
"@angular/platform-browser-dynamic": "^13",
"@angular/router": "^13",
"font-awesome": "^4.7.0",
"rxjs": "~6.5.4",
"tslib": "^2.4.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13",
"@angular-eslint/builder": "13.5.0",
"@angular-eslint/eslint-plugin": "13.5.0",
"@angular-eslint/eslint-plugin-template": "13.5.0",
"@angular-eslint/schematics": "13.5.0",
"@angular-eslint/template-parser": "13.5.0",
"@angular/cli": "^13",
"@angular/compiler-cli": "^13",
"@angular/language-service": "^13",
"@types/jasmine": "~3.7.7",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"coveralls": "^3.1.1",
"cpx2": "^4.2.0",
"eslint": "^8.18.0",
"jasmine-core": "~3.7.1",
"jasmine-spec-reporter": "~6.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.6.0",
"ng-packagr": "^13.3.1",
"protractor": "~7.0.0",
"ts-node": "~8.5.0",
"typescript": ">=4.5",
"webpack": "^5.73.0"
}
}