-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 858 Bytes
/
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
{
"name": "isemail",
"version": "0.1.0",
"author": "Eli Skeggs <[email protected]>",
"description": "validate an email address according to RFCs 5321, 5322, and others",
"main": "./index",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/globesherpa/isemail.git"
},
"homepage": "https://github.com/globesherpa/isemail",
"bugs": "https://github.com/globesherpa/isemail/issues",
"keywords": [
"isemail",
"validation",
"check",
"checking",
"verification",
"email",
"address",
"email address"
],
"devDependencies": {
"mocha": "~1.13.0",
"expect.js": "~0.2.0"
},
"licenses": [
{
"type": "BSD",
"url": "http://www.opensource.org/licenses/bsd-license.php"
}
],
"engines": {
"node": "*"
}
}