-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1 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
{
"name": "common-words",
"description": "Updated list (JSON) of the 100 most common words in the English language. Useful for excluding these words from arrays.",
"version": "0.1.3",
"homepage": "https://github.com/jonschlinkert/common-words",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/common-words.git"
},
"bugs": {
"url": "https://github.com/jonschlinkert/common-words/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jonschlinkert/common-words/blob/master/LICENSE-MIT"
}
],
"keywords": [
"words",
"common",
"english"
],
"main": "index.js",
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "mocha -R test"
},
"devDependencies": {
"verb": "~0.2.0"
},
"devDependencies": {
"cheerio": "~0.15.0",
"fs-utils": "~0.4.0",
"request": "~2.34.0",
"verbalize": "~0.1.2"
}
}