forked from DethAriel/ng-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.27 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
{
"name": "ng-recaptcha",
"version": "4.2.1",
"description": "Angular component for Google reCAPTCHA",
"scripts": {
"demo": "yarn demo:serve",
"demo:serve": "cd demo && yarn start",
"demo:build": "cd demo && yarn build",
"demo:publish": "yarn demo:publish-gh-pages",
"demo:publish-gh-pages": "gh-pages -d demo/dist/ng-recaptcha",
"pack-latest": "yarn transpile && mv \"$(npm pack)\" ng-recaptcha-latest.tgz",
"transpile": "ngc -p ./tsconfig.json",
"clean": "del-cli './{recaptcha/,index,forms}*.{js,d.ts,js.map,metadata.json}' 'ng-recaptcha-*.tgz'",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file",
"github-release": "conventional-github-releaser --preset angular",
"prepare-release": "npm whoami && yarn build && npm version $1",
"push-release": "git push && git push --tags",
"version": "yarn changelog && git add CHANGELOG.md && yarn demo:build && git add demo/yarn.lock",
"lint:prod": "tslint --project ./tsconfig.json --type-check",
"lint": "yarn lint:prod --force",
"build": "run-s clean lint:prod transpile",
"prepush": "yarn lint:prod"
},
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/DethAriel/ng-recaptcha"
},
"keywords": [
"angular",
"recaptcha",
"angular-recaptcha",
"ng-recaptcha"
],
"author": "Ruslan Arkhipau <[email protected]>",
"license": "MIT",
"optionalDependencies": {
"@types/grecaptcha": "^2.0.33"
},
"peerDependencies": {
"@angular/core": "^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@types/core-js": "^0.9.39",
"angular-precommit": "^1.0.3",
"codelyzer": "^4.3.0",
"conventional-changelog-cli": "^1.3.1",
"conventional-github-releaser": "^1.1.13",
"del-cli": "^0.2.1",
"gh-pages": "^0.12.0",
"husky": "^0.13.3",
"npm-run-all": "^4.1.2",
"rxjs": "^6.1.0",
"tslint": "~5.7.0",
"typescript": "~2.7.2",
"zone.js": "^0.8.26"
},
"homepage": "https://github.com/DethAriel/ng-recaptcha#readme"
}