forked from DethAriel/ng-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.12 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
{
"name": "@devolutions/ng-recaptcha-base",
"private": true,
"version": "10.0.0",
"scripts": {
"demo:file-gen": "ts-node --project ./tsconfig.node.json ./projects/demo/bin/file-gen.ts",
"demo:serve": "yarn demo:file-gen && ng serve demo",
"demo:build": "yarn demo:file-gen && ng build demo --configuration production && yarn demo:copy-entrypoints",
"demo:copy-entrypoints": "ts-node --project ./tsconfig.node.json ./projects/demo/bin/copy-entrypoints.ts",
"demo:serve-http": "http-server ./dist/demo -a localhost -p 9000 -c-1",
"clean": "rimraf dist",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file",
"github-release": "conventional-github-releaser --preset angular",
"lib:build": "ng build ng-recaptcha --configuration production",
"version:lib": "cd projects/ng-recaptcha && npm version $NGR_VERSION --no-git-tag-version && git add package.json",
"preversion": "yarn version:lib && yarn lib:build",
"version": "yarn changelog && git add CHANGELOG.md",
"lint": "eslint projects --ext .js,.ts,.html",
"prepare": "husky install",
"publish:jfrog": "yarn lib:build && cd dist/ng-recaptcha && yarn publish --registry https://devolutions.jfrog.io/devolutions/api/npm/npm-local/"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@types/grecaptcha": "^3.0.4",
"tslib": "^2.2.0"
},
"peerDependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "^14",
"@angular-eslint/builder": "^14",
"@angular-eslint/eslint-plugin": "^14",
"@angular-eslint/eslint-plugin-template": "^14",
"@angular-eslint/schematics": "^14",
"@angular-eslint/template-parser": "^14",
"@angular/animations": "^14",
"@angular/cdk": "^14",
"@angular/cli": "^14",
"@angular/common": "^14",
"@angular/compiler": "^14",
"@angular/compiler-cli": "^14",
"@angular/core": "^14",
"@angular/forms": "^14",
"@angular/material": "^14",
"@angular/platform-browser": "^14",
"@angular/platform-browser-dynamic": "^14",
"@angular/router": "^14",
"@types/core-js": "^2.5.4",
"@types/jasmine": "^3.8.1",
"@types/node": "^12",
"@types/query-string": "^6.3.0",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"conventional-changelog-cli": "^2.1.1",
"conventional-github-releaser": "^3.1.5",
"coveralls": "^3.1.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"highlight.js": "^11.1.0",
"http-server": "^0.12.3",
"husky": "^7.0.0",
"jasmine-core": "^3.8.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"lint-staged": "^11.0.1",
"ng-packagr": "^14.1.0",
"prettier": "^2.3.2",
"protractor": "^7.0.0",
"query-string": "^7.0.1",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"typescript-eslint": "^0.0.1-alpha.0",
"zone.js": "~0.11.4"
}
}