-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 2.39 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": "ngx-vcard-app",
"version": "0.0.0-development",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:app": "ng build",
"build:lib": "ng build --configuration production ngx-vcard && npm run copy-files",
"test:lib:dev-debug": "ng test ngx-vcard --watch --browsers=ChromeDebugging",
"test": "ng test",
"lint": "ng lint",
"commit": "git-cz",
"copy-license": "copyfiles ./LICENSE ./dist/ngx-vcard",
"copy-readme": "copyfiles ./README.md ./dist/ngx-vcard",
"playwright": "npx puppeteer browsers install chrome && playwright test",
"copy-files": "npm run copy-license && npm run copy-readme",
"semantic-release": "semantic-release",
"format": "prettier -w ./"
},
"private": false,
"dependencies": {
"@angular-devkit/core": "17.3.8",
"@angular/animations": "17.3.11",
"@angular/common": "17.3.11",
"@angular/compiler": "17.3.11",
"@angular/core": "17.3.11",
"@angular/forms": "17.3.11",
"@angular/platform-browser": "17.3.11",
"@angular/platform-browser-dynamic": "17.3.11",
"@angular/router": "17.3.11",
"rxjs": "7.8.1",
"tslib": "2.6.3",
"zone.js": "0.14.7",
"ngx-vcard": "x"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.10",
"@angular/cli": "^17.3.8",
"@angular/compiler-cli": "17.3.11",
"@angular/language-service": "17.3.11",
"@playwright/test": "^1.45.0",
"@types/jasmine": "3.10.18",
"@types/jasminewd2": "2.0.13",
"@types/node": "16.18.82",
"codelyzer": "6.0.2",
"commitizen": "4.3.0",
"copyfiles": "2.4.1",
"cz-conventional-changelog": "3.3.0",
"jasmine-core": "5.1.2",
"jasmine-reporters": "2.5.2",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "1.7.0",
"ng-packagr": "17.3.0",
"prettier": "^3.3.2",
"protractor": "7.0.0",
"puppeteer": "22.12.0",
"semantic-release": "19.0.5",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "5.4.5",
"webdriver-manager": "12.1.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/DanielHabenicht/ngx-vcard.git"
},
"release": {
"pkgRoot": "dist/ngx-vcard"
}
}