-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "moby",
"version": "1.1.2",
"description": "An open-source website (and CLI) for searching the largest thesaurus in the English language.",
"main": "index.js",
"bin": "index.js",
"repository": "https://github.com/zeke/moby",
"scripts": {
"start": "node server.js",
"test": "mocha && standard",
"lint": "standard --fix",
"dev": "nodemon server.js"
},
"keywords": [
"words",
"language",
"thesaurus",
"moby",
"linguistics",
"relations",
"translation",
"reference",
"data"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com/)",
"license": "MIT",
"devDependencies": {
"mocha": "^3.0.2",
"nodemon": "^2.0.6",
"standard": "^16.0.3"
},
"dependencies": {
"express": "^4.1.0",
"jstransformer-markdown-it": "^2.1.0",
"lodash.union": "^2.4.1",
"pug": "^2.0.3",
"thesaurus": "0.0.0"
},
"standard": {
"env": {
"mocha": true
}
},
"icon": "public/images/apple-touch-icon-152x152.png"
}