forked from FGRibreau/mailchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.89 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
{
"name": "mailchecker",
"version": "3.0.19",
"description": "Cross-language temporary (disposable/throwaway) email detection library. Covers hundreds fake email providers.",
"main": "platform/node/",
"scripts": {
"test": "mocha -r should -R spec -G -u tdd",
"build": "node gen.js && npm run compile",
"phptest": "npm run build && php test/*.php",
"watch": "mocha -r should -R spec -G -u tdd -w",
"compile": "projectz compile",
"changelog": "github-changes --o $(node -p 'process.env.npm_package_repository_url.split(\"/\")[3];') --r $(node -p 'a=process.env.npm_package_repository_url.split(\"/\");a[a.length-1].split(\".\")[0]') --token $CHANGELOG_GITHUB_TOKEN_FG -f CHANGELOG.md",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master",
"release-after-pr": "git pull --rebase && npm run build && npm run test && git commit -a -m 'feat(build): update plateform files' && npm run release-patch",
"release-patch": "npm-release patch && npm run changelog-git && npm run publish-gem",
"publish-gem": "sed -E -i '' \"s/spec.version[[:space:]]*=(.*)/spec.version='${npm_package_version}'/g\" *.gemspec && (git add *.gemspec && git commit -m \"feat(gemspec): updated to ${npm_package_version}\" || true) && gem build *.gemspec && gem push ruby-mailchecker-${npm_package_version}.gem"
},
"repository": {
"type": "git",
"url": "git://github.com/FGRibreau/mailchecker.git"
},
"keywords": [
"email",
"domains",
"disposable"
],
"engines": {
"node": "0.10"
},
"browsers": false,
"maintainers": [
"Francois-Guillaume Ribreau <[email protected]> (http://bit.ly/2c7uFJq)"
],
"sponsors": [],
"contributors": [
"Owen Stephens <[email protected]> (http://www.owenstephens.co.uk)",
"Jacob Burenstam (http://jacobburenstam.com)",
"Herman Slatman (http://hermanslatman.nl)",
"trisix <[email protected]> (https://github.com/trisix)",
"Greenkeeper (http://greenkeeper.io/)",
"Dustin Clark <[email protected]> (http://wusty.io)",
"Anton Zhiyanov <[email protected]> (http://antonz.ru/)",
"Bruel Nicolas (https://github.com/NBruel)",
"Robin (https://github.com/R-J)",
"Spir (https://github.com/Spir)",
"Vincent Giersch <[email protected]> (http://flat.io)",
"watadarkstar (https://github.com/watadarkstar)",
"Dave Powers (http://djpowers.github.io)",
"Frank Phillips (https://github.com/frankydp)",
"LuckyDino (https://github.com/LuckyDino)",
"ven (https://github.com/vendethiel)",
"Romain Gay <[email protected]> (http://www.linkedin.com/in/romaingay)",
"Sebastian Cohnen (http://stormforger.com)",
"Dalai (https://github.com/dav1a1223)",
"quaswex (https://github.com/quaswex)",
"sxyuan (https://github.com/sxyuan)",
"Francois-Guillaume Ribreau <[email protected]> (http://bit.ly/2c7uFJq)"
],
"badges": {
"list": [
"travisci",
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev",
"---",
"patreon",
"gratipay",
"flattr",
"paypal",
"bitcoin"
],
"config": {
"patreonUsername": "fgribreau",
"gratipayUsername": "fgribreau",
"flattrUsername": "fgribreau",
"paypalURL": "https://fgribreau.me/paypal",
"bitcoinURL": "https://www.coinbase.com/fgribreau"
}
},
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com)",
"license": "MIT",
"dependencies": {
"async": "^2.0.1",
"cjson": "^0.4.0",
"eventemitter2": "^2.0.0",
"glob": "^7.0.3",
"lodash": "^4.6.1",
"mu2": "~0.5.20",
"node-range": "0.1.x"
},
"devDependencies": {
"github-changes": "^1.0.2",
"mocha": "3.2.0",
"nodeunit": "0.10.2",
"projectz": "^1.3.2",
"should": "^11.1.0"
},
"optionalDependencies": {},
"bugs": {
"url": "https://github.com/FGRibreau/mailchecker/issues"
}
}