forked from kolkov/angular-editor
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.67 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
69
70
{
"name": "@kolkov/angular-editor",
"version": "1.0.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --prod",
"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 build angular-editor",
"publish:lib": "npm run copy && npm run copy:changelog && npm run copy:license && npm publish ./dist/angular-editor",
"copy:readme": "cpx README.md dist/angular-editor",
"copy:changelog": "cpx CHANGELOG.md dist/kolkov/angular-editor",
"copy:license": "cpx LICENSE dist/kolkov/angular-editor",
"test-ci": "ng test angular-editor --code-coverage --watch=false --browsers=ChromeHeadless && cat ./coverage/angular-editor/lcov.info | coveralls",
"elements:serve": "ng serve elements",
"elements:build": "ng run elements:build",
"emements:cat": "cat projects/elements/dist/tmp/runtime-es2015.js projects/elements/dist/tmp/main-es2015.js projects/elements/dist/tmp/styles-es2015.js projects/elements/dist/tmp/vendor-es2015.js > projects/elements/dist/tmp/angular-editor.js",
"elements:copy": "cpx projects/elements/dist/tmp/angular-editor.js components/"
},
"private": true,
"dependencies": {
"@angular-builders/custom-webpack": "^8.4.0",
"@angular/animations": "^8.2.14",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/elements": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"document-register-element": "^1.7.2",
"font-awesome": "^4.7.0",
"rxjs": "~6.5.3",
"tslib": "^1.10.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.20",
"@angular-devkit/build-ng-packagr": "~0.803.20",
"@angular/cli": "^8.3.20",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^8.2.14",
"@types/jasmine": "~3.4.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~12.12.7",
"codelyzer": "^5.1.0",
"coveralls": "^3.0.4",
"cpx": "^1.5.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-packagr": "^5.7.1",
"protractor": "~5.4.0",
"ts-node": "~8.5.0",
"tsickle": "~0.37.0",
"tslint": "~5.20.1",
"typescript": "~3.5.3",
"uuid": "^3.3.3"
}
}