forked from JsDaddy/ngx-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 4.47 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
{
"name": "ngx-mask",
"version": "14.0.3",
"description": "awesome ngx mask",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"angular-cli": {},
"keywords": [
"ng2-mask",
"ngx-mask",
"ng2",
"angular-mask",
"mask",
"angular",
"angular2",
"angular2-mask",
"ng2mask",
"jsdaddy"
],
"private": true,
"scripts": {
"ng": "ng",
"build": "ng build showcase --configuration production",
"build:lib": "ng build --configuration production ngx-mask-lib && npm run copy-libdocs",
"ci": "npm run lint && npm run build:lib && npm run test:all && npm run build",
"copy-libdocs": "copyfiles -V -E README.md LICENSE dist/ngx-mask-lib",
"fix:prettier": "prettier --write \"./**/*.{js,json,md,ts,html,scss}\"",
"fix:lint": "npm run lint -- --fix",
"lint": "ng lint && npm run lint:markdown",
"lint:fix": "ng lint --fix",
"lint:markdown": "markdownlint -i projects/ngx-mask-lib/coverage -i node_modules -i CHANGELOG.md ./",
"pack:lib": "cd dist/ngx-mask-lib && npm pack",
"precommit-msg": "echo 'Please wait while we do our pre-commit checks...' && exit 0",
"prettier": "prettier './src/**/*.ts' './projects/**/*.ts' --write",
"publish:lib": "cd dist/ngx-mask-lib && npm publish",
"release:major": "npm run version:major && npm run build:lib && npm run pack:lib && npm run publish:lib",
"release:minor": "npm run version:minor && npm run build:lib && npm run pack:lib && npm run publish:lib",
"release:patch": "npm run version:patch && npm run build:lib && npm run pack:lib && npm run publish:lib",
"start": "ng serve -o showcase --hmr",
"start-prod": "angular-http-server --path dist/showcase --p 3000 --silent",
"test": "npm run test:lib",
"test:all": "npm run test:app && npm run test:lib",
"test:app": "ng test showcase",
"test:lib": "ng test ngx-mask-lib",
"test:lib:ct": "ngcc && ng run ngx-mask-lib:ct",
"version:major": "npm --no-git-tag-version version major && cd projects/ngx-mask-lib && npm --no-git-tag-version version major",
"version:minor": "npm --no-git-tag-version version minor && cd projects/ngx-mask-lib && npm --no-git-tag-version version minor",
"version:patch": "npm --no-git-tag-version version patch && cd projects/ngx-mask-lib && npm --no-git-tag-version version patch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/JsDaddy/ngx-mask.git"
},
"dependencies": {
"@angular/animations": "14.0.2",
"@angular/cdk": "14.0.2",
"@angular/common": "14.0.2",
"@angular/compiler": "14.0.2",
"@angular/core": "14.0.2",
"@angular/forms": "14.0.2",
"@angular/platform-browser": "14.0.2",
"@angular/platform-browser-dynamic": "14.0.2",
"@angular/router": "14.0.2",
"@jscutlery/cypress-angular": "0.9.2",
"bootstrap": "5.1.3",
"intl": "1.2.5",
"rxjs": "7.5.5",
"tslib": "2.4.0",
"zone.js": "0.11.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.2",
"@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": "14.0.2",
"@angular/compiler-cli": "14.0.2",
"@angular/language-service": "14.0.2",
"@angular/material": "14.0.2",
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@nrwl/cypress": "14.3.6",
"@types/highlight.js": "9.12.4",
"@types/jasmine": "4.0.3",
"@types/node": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"angular-cli-ghpages": "1.0.0",
"angular-http-server": "1.10.0",
"copyfiles": "2.4.1",
"cypress": "10.2.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.1",
"jasmine-core": "4.2.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-cli": "2.0.0",
"karma-coverage": "2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"karma-mocha-reporter": "2.2.5",
"markdownlint-cli": "0.31.1",
"ng-packagr": "14.0.2",
"prettier": "2.7.1",
"puppeteer": "14.4.1",
"sass": "1.52.3",
"ts-node": "10.8.1",
"typescript": "4.7.4"
}
}