-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1010 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
40
{
"name": "pgoogle",
"version": "1.0.6",
"description": "Google your keywords, then randomly put together a paragraph from the results",
"main": "index.js",
"author": "Marcus Zhou <[email protected]> (https://marcuszhou.com)",
"license": "GPL-3.0",
"keywords": [
"google",
"essay",
"essay-generator",
"paragraph-generator",
"generator",
"homework",
"homework-helper"
],
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.3.1",
"commander": "^2.14.1",
"google": "^2.1.0",
"natural": "^0.5.6",
"node-wordnet": "^0.1.12",
"pick-random": "^2.0.0",
"wordnet-db": "^3.1.6"
},
"homepage": "https://github.com/SuperMarcus/pgoogle",
"repository": "github:SuperMarcus/pgoogle.git",
"bugs": {
"url": "https://github.com/SuperMarcus/pgoogle/issues",
"email": "[email protected]"
},
"bin": {
"pgoogle": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"dev": "node --inspect-brk cli.js"
}
}