-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 4.28 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
{
"name": "ngx-copypaste",
"description": "Awesome ngx copypaste directive",
"version": "18.0.2",
"license": "MIT",
"keywords": [
"ng2-copypaste",
"ngx-copypaste",
"ng2",
"ng",
"angular-copypaste",
"copypaste",
"angular",
"angular2",
"angular2-clipboard",
"ng2clipboard",
"jsdaddy",
"angular-clipboard",
"clipboard",
"angular2-clipboard",
"ng2clipboard",
"ng2-clipboard",
"ngx-clipboard"
],
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-copypaste --base-href /ngx-copypaste/ --configuration production",
"build:lib": "ng build --configuration production ngx-copypaste-lib && bun run copy-libdocs",
"copy-libdocs": "cp README.md LICENSE dist/ngx-copypaste-lib",
"publish:lib": "cd dist/ngx-copypaste-lib && bun publish",
"test": "ng test",
"test:pre-commit": "ng test --watch=false",
"lint": "ng lint && bun run lint:scss",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:scss:fix": "stylelint \"**/*.scss\" --fix",
"init:git:hooks": ".github/scripts/setup_hooks.sh",
"cypress:open": "cypress open",
"cypress:bash": "npx cypress run --component",
"lint:fix": "ng lint --fix && bun run lint:scss:fix",
"prettier:fix": "npx prettier --write .",
"type-coverage": "type-coverage",
"snyk:auth": "snyk auth",
"snyk:test": "snyk test && snyk code test"
},
"repository": {
"type": "git",
"url": "https://github.com/JsDaddy/ngx-copypaste.git"
},
"dependencies": {
"@angular/animations": "19.0.0",
"@angular/common": "19.0.0",
"@angular/compiler": "19.0.0",
"@angular/core": "19.0.0",
"@angular/forms": "19.0.0",
"@angular/platform-browser": "19.0.0",
"@angular/platform-browser-dynamic": "19.0.0",
"@angular/router": "^19.0.0",
"highlight.js": "^11.10.0",
"ngx-highlightjs": "^12.0.0",
"ngxtension": "^4.1.0",
"rxjs": "7.8.1",
"snyk": "^1.1294.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.0.0",
"@angular-eslint/builder": "18.4.1",
"@angular-eslint/eslint-plugin": "18.4.1",
"@angular-eslint/eslint-plugin-template": "18.4.1",
"@angular-eslint/schematics": "18.4.1",
"@angular-eslint/template-parser": "18.4.1",
"@angular/cli": "19.0.0",
"@angular/compiler-cli": "19.0.0",
"@angular/language-service": "19.0.0",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/jasmine": "~5.1.4",
"@types/node": "22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@web/test-runner": "^0.19.0",
"angular-eslint": "^18.4.1",
"cypress": "^13.16.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-prettier": "5.2.1",
"jasmine-core": "5.4.0",
"jasmine-spec-reporter": "7.0.0",
"lint-staged": "15.2.10",
"ng-packagr": "19.0.0",
"npm-check-updates": "^17.1.11",
"prettier": "3.3.3",
"puppeteer": "^23.9.0",
"semantic-release": "24.2.0",
"semantic-release-export-data": "^1.1.0",
"stylelint": "16.10.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-prettier": "5.0.2",
"type-coverage": "^2.29.7",
"typescript": "5.6.3",
"typescript-eslint": "^8.15.0",
"tailwindcss": "^3.4.15",
"bun-types": "^1.1.36",
"postcss": "8.4.49",
"postcss-nesting": "13.0.1",
"cssnano": "7.0.6",
"postcss-scss": "4.0.9"
},
"typeCoverage": {
"atLeast": 92,
"ignoreObject": true,
"ignoreAsAssertion": true,
"ignoreTypeAssertion;": true,
"strict": true,
"suppressError": true,
"reportSemanticError": true,
"ignoreCatch": true,
"ignoreFiles": [
"server/**/*.ts",
"server.ts"
]
}
}