This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.69 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
79
80
{
"name": "@tinkoff/angular-contenteditable-accessor",
"version": "1.2.0",
"description": "This is a ControlValueAccessor for using Angular forms with contenteditable elements",
"keywords": [
"angular",
"contenteditable",
"form",
"ControlValueAccessor",
"ngmodel",
"formControl",
"control"
],
"homepage": "https://github.com/taiga-family/angular-contenteditable-accessor#README",
"bugs": "https://github.com/taiga-family/angular-contenteditable-accessor/issues",
"repository": "https://github.com/taiga-family/angular-contenteditable-accessor",
"license": "Apache-2.0",
"author": "Alex Inkin <[email protected]>",
"scripts": {
"postinstall": "npx ngcc --async",
"start": "nx serve",
"check": "tsc --noEmit --skipLibCheck",
"build": "nx build demo",
"test": "nx test angular-contenteditable-accessor --browsers ChromeHeadless --watch=false --code-coverage",
"prettier": "prettier !package-lock.json . --ignore-path .gitignore"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"projects/**/*.ts": [
"prettier --write",
"git add"
],
"projects/**/*.html": [
"prettier --write",
"git add"
]
},
"prettier": "@taiga-ui/prettier-config",
"devDependencies": {
"@angular-devkit/build-angular": "12.2.18",
"@angular/cli": "12.2.18",
"@angular/common": "12.2.17",
"@angular/compiler": "12.2.17",
"@angular/compiler-cli": "12.2.17",
"@angular/core": "12.2.17",
"@angular/forms": "12.2.17",
"@angular/language-service": "12.2.17",
"@angular/platform-browser": "12.2.17",
"@angular/platform-browser-dynamic": "12.2.17",
"@nx/jest": "17.2.0",
"@nx/node": "17.2.0",
"@nx/workspace": "17.2.0",
"@taiga-ui/prettier-config": "0.7.0",
"@tinkoff/linters": "1.52.1",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "2.0.13",
"core-js": "2.6.12",
"husky": "8.0.3",
"jasmine-core": "5.1.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lerna": "8.0.0",
"lint-staged": "15.2.0",
"ng-packagr": "12.2.7",
"nx": "17.2.0",
"prettier": "3.1.1",
"rxjs": "7.5.7",
"tsickle": "0.46.3",
"typescript": "4.3.5",
"zone.js": "0.11.8"
}
}