-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "email_address",
"version": "0.1.1",
"description": "A Javascript language library for validating and working with Email Addresses. By default, it validates against a \"conventional\" subset of the RFC specification which consitute user email addresses.",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/run-when-changed --watch '*.js' --exec 'echo %s && ./node_modules/.bin/mocha --reporter spec' --watch '**/*.js' --exec 'echo %s && ./node_modules/.bin/mocha --reporter spec'",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"bin": {
"emailaddress": "bin/emailaddress.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afair/email_address.js.git"
},
"keywords": [
"email",
"address",
"emailaddress",
"smtputf8",
"validate",
"parse",
"compare",
"match",
"internationalization"
],
"author": "Allen Fair <[email protected]> @allenfair <http://allenfair.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/afair/email_address.js/issues"
},
"homepage": "https://github.com/afair/email_address.js#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.4",
"run-when-changed": "^2.0.3"
},
"dependencies": {
"argv": "0.0.2",
"cidr-address": "^0.1.1",
"express": "^4.16.3",
"md5": "^2.2.1",
"npm": "^6.4.0",
"punycode": "^2.1.0",
"sha1": "^1.1.1"
}
}