forked from taiga-family/maskito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 4.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "maskito",
"version": "3.0.0",
"description": "Collection of libraries to create an input mask which ensures that user types value according to predefined format",
"keywords": [
"mask",
"inputmask",
"input-mask",
"text-mask",
"input-formatting",
"javascript",
"typescript",
"angular"
],
"homepage": "https://maskito.dev",
"bugs": "https://github.com/taiga-family/maskito/issues",
"repository": {
"type": "git",
"url": "https://github.com/taiga-family/maskito.git"
},
"license": "Apache-2.0",
"author": {
"name": "Nikita Barsukov",
"email": "nikita.s.barsukov@gmail.com",
"url": "https://github.com/nsbarsukov"
},
"contributors": [
"Alex Inkin <alexander@inkin.ru> (https://twitter.com/waterplea)",
"Maksim Ivanov <splincodewd@yandex.ru>",
"Vladimir Potekhin <vladimir.potekh@gmail.com>",
"Nikita Barsukov <nikita.s.barsukov@gmail.com>"
],
"workspaces": [
"projects/*"
],
"scripts": {
"postinstall": "husky install",
"*** Workflow ***": "",
"start": "nx run demo:serve",
"build": "nx run demo:build:production",
"test": "nx run-many --target test --all",
"*** Format ***": "",
"lint": "eslint .",
"cspell": "cspell --relative --dot --gitignore .",
"prettier": "prettier !package-lock.json . --ignore-path .gitignore",
"stylelint": "stylelint '**/*.{less,css}'",
"typecheck": "tsc --noEmit --skipLibCheck --incremental false --tsBuildInfoFile null --project tsconfig.spec.json",
"*** SSR ***": "",
"serve:dev:ssr": "nx run demo:serve-ssr",
"serve:ssr": "node dist/demo/server/main.js",
"serve:prerender": "http-server dist/demo/browser",
"build:ssr": "nx run demo:server:production",
"build:prerender": "nx run demo:prerender",
"*** Cypress ***": "",
"cy:open": "cypress open --project ./projects/demo-integrations/",
"cy:run": "nx e2e demo-integrations",
"*** Release ***": "",
"release": "standard-version -a --no-verify",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"publish": "nx run-many --target build --all --exclude=demo && nx run-many --target publish --all"
},
"commitlint": {
"extends": [
"@taiga-ui/commitlint-config"
]
},
"lint-staged": {
"*.{js,ts,html,md,less,json,svg,yml}": [
"npm run lint -- --fix",
"prettier --write"
],
"*.less": [
"stylelint --fix"
]
},
"prettier": "@taiga-ui/prettier-config",
"stylelint": {
"extends": [
"@taiga-ui/stylelint-config"
],
"ignoreFiles": [
"**/demo/**",
"**/dist/**",
"**/coverage/**",
"**/node_modules/**"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.14",
"@angular-devkit/core": "16.2.14",
"@angular-devkit/schematics": "16.2.14",
"@angular/cli": "16.2.14",
"@angular/core": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@nx/angular": "19.5.6",
"@nx/eslint": "19.5.6",
"@nx/jest": "19.5.6",
"@nx/js": "19.5.6",
"@nx/react": "19.5.6",
"@nx/rollup": "19.5.6",
"@nx/workspace": "19.5.6",
"@taiga-ui/commitlint-config": "0.128.0",
"@taiga-ui/cspell-config": "0.128.0",
"@taiga-ui/eslint-plugin-experience": "0.128.0",
"@taiga-ui/prettier-config": "0.128.0",
"@taiga-ui/stylelint-config": "0.128.0",
"@taiga-ui/tsconfig": "0.128.0",
"@tinkoff/eslint-config": "4.1.1",
"@tinkoff/eslint-config-react": "4.1.1",
"@types/jest": "29.5.12",
"@types/node": "22.1.0",
"eslint": "8.57.0",
"http-server": "14.1.1",
"husky": "9.1.4",
"jest": "29.7.0",
"jest-preset-angular": "14.2.2",
"lint-staged": "15.2.8",
"ng-packagr": "16.2.3",
"nx": "19.5.6",
"postcss-preset-env": "9.6.0",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"stylelint": "16.8.1",
"ts-jest": "29.2.4",
"ts-node": "10.9.2",
"tsutils": "3.21.0",
"typescript": "4.9.5",
"webpack": "5.93.0",
"webpack-merge": "6.0.1"
},
"engines": {
"node": ">= 20",
"npm": ">= 10",
"yarn": "Please use npm instead of yarn to install dependencies"
},
"overrides": {
"highlight.js": "11.5.1"
},
"standard-version": {
"scripts": {
"postchangelog": "ts-node ./scripts/postchangelog.ts",
"postbump": "ts-node ./scripts/postbump.ts"
}
}
}