-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "nonsensical",
"description": "Generate somewhat grammatical sentences of nonsense",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "http://github.com/1j01/nonsensical.git"
},
"bugs": {
"url": "http://github.com/1j01/nonsensical/issues"
},
"license": "MIT",
"keywords": [
"sentence",
"sentences",
"sentence-generator",
"sentence-generation",
"text-generator",
"text-generation",
"generation",
"procedural-generation",
"procedural-content-generation",
"pcg",
"random",
"dummy",
"random-text",
"dummy-text",
"placeholder-text",
"placeholder",
"filler-text",
"filler",
"text",
"words",
"gibberish",
"giberish",
"nonsense",
"nonsensical",
"lorem-ipsum",
"lipsum",
"lorem",
"ipsum",
"grammatical",
"grammar",
"natural-language",
"language",
"english",
"lingual",
"silly",
"fun"
],
"main": "src/nonsensical.js",
"scripts": {
"start": "node src/npm-start.js",
"grab-wordnet-data": "cp -r node_modules/wordnetjs/data/ data/",
"grab-wordnet-data-for-app": "cp -r node_modules/wordnetjs/data/ app/data/",
"dev": "webpack-dev-server",
"build-app": "webpack",
"predeploy-app": "webpack",
"deploy-app": "butler push app 1j01/nonsensical:app"
},
"dependencies": {
"natural": "0.6.1",
"pluralize": "7.0.0",
"wordnetjs": "github:wassname/wordnet.js#abcc71a860778724c2ebc9f97eecf4e6a07ca178"
},
"devDependencies": {
"webpack": "4.22.0",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10"
}
}