forked from mailcheck/mailcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "mailcheck",
"title": "mailcheck",
"description": "Reduce misspelled email addresses in your forms.",
"keywords": [
"form",
"email",
"spell check"
],
"version": "1.1.2",
"author": {
"name": "Derrick Ko",
"url": "http://derrickko.com",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Wei Lu",
"url": "http://neo.com",
"email": "[email protected]"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mailcheck/mailcheck/blob/master/LICENSE"
}
],
"bugs": "https://github.com/mailcheck/mailcheck/issues",
"homepage": "https://github.com/mailcheck/mailcheck",
"docs": "https://github.com/mailcheck/mailcheck/blob/master/README.md",
"dependencies": {},
"devDependencies": {
"ghooks": "^1.3.2",
"grunt": "~0.4",
"grunt-cli": "~0.1.9",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "~0.2",
"grunt-jasmine-node": "~0.1.0",
"jasmine-node": "1.x"
},
"main": "src/mailcheck.js",
"repository": {
"type": "git",
"url": "git://github.com/mailcheck/mailcheck.git"
},
"scripts": {
"test": "grunt test",
"prepublish": "grunt test",
"uglify": "grunt uglify"
},
"config": {
"ghooks": {
"pre-commit": "grunt"
}
}
}