-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
78 lines (78 loc) · 2.79 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
{
"name": "library-host",
"version": "0.0.0",
"engines": {
"node": ">=14.20.0"
},
"scripts": {
"prepare": "husky install",
"ng": "ng",
"prettier": "prettier --write \"**/*.{json,md,ts,html,component.html}\"",
"start": "ng serve",
"build": "ng build ngx-clipboard --configuration production && yarn build-copy",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"test": "ng test ngx-clipboard",
"test:watch": "ng test ngx-clipboard --watch",
"lint": "ng lint ngx-clipboard",
"publish:lib": "yarn publish ./dist/lib",
"publish:lib:next": "yarn publish ./dist/lib --tag next",
"build-copy": "cpx \"./README.md\" \"./dist/lib\"",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.4",
"@angular/common": "^15.1.4",
"@angular/compiler": "^15.1.4",
"@angular/core": "^15.1.4",
"@angular/forms": "^15.1.4",
"@angular/platform-browser": "^15.1.4",
"@angular/platform-browser-dynamic": "^15.1.4",
"@angular/router": "^15.1.4",
"ngx-clipboard": "15.0.0",
"ngx-window-token": "7.0.0",
"rxjs": "~7.4.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.5",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "^15.1.5",
"@angular/compiler-cli": "^15.1.4",
"@angular/language-service": "^15.1.4",
"@types/jasmine": "~3.10.2",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cpx": "^1.5.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "8.0.3",
"jasmine-core": "~3.10.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^15.1.2",
"lint-staged": "13.1.1",
"prettier": "2.4.1",
"protractor": "~7.0.0",
"ts-node": "~10.4.0",
"typescript": "~4.8.4"
},
"lint-staged": {
"*.{json,md,ts,html,component.html}": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}