-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
39 lines (39 loc) · 980 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": "wordfilter",
"description": "A small module meant for use in text generators that lets you filter strings for bad words.",
"version": "0.2.6",
"homepage": "https://github.com/dariusk/wordfilter",
"author": {
"name": "Darius Kazemi",
"email": "[email protected]",
"url": "http://tinysubversions.com"
},
"repository": {
"type": "git",
"url": "git://github.com/dariusk/wordfilter.git"
},
"bugs": {
"url": "https://github.com/dariusk/wordfilter/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dariusk/wordfilter/blob/master/LICENSE-MIT"
}
],
"main": "lib/wordfilter",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt nodeunit"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.4.0",
"grunt-jsonlint": "^1.0.4",
"grunt": "~0.4.1"
},
"keywords": []
}