-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
39 lines (39 loc) · 866 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" : "wordfreq",
"version" : "0.1.0-dev",
"description" : "Text corpus calculation in Javascript.",
"main" : "./src/wordfreq.worker.js",
"bin" : {
"wordfreq" : "./src/wordfreq.cli.js"
},
"preferGlobal": true,
"engines" : {
"node" : ">=0.8.0"
},
"dependencies" : {
"optimist" : "~0.3.5"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/timdream/wordfreq.git"
},
"licenses" : [{
"type" : "MIT",
"url" : "https://raw.github.com/timdream/wordfreq/master/LICENSE"
}],
"keywords" : [
"cli",
"corpus",
"keyword"
],
"author" : {
"name": "Timothy Guan-tin Chien",
"email": "[email protected]",
"url" : "http://timdream.org/"
},
"maintainers": [{
"name": "Timothy Guan-tin Chien",
"email": "[email protected]",
"url" : "http://timdream.org/"
}]
}