-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 973 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
41
42
43
44
{
"name": "@zeke/ord",
"version": "1.0.0",
"repository": "https://github.com/words/ord",
"author": "zeke",
"license": "MIT",
"description": "A website displaying Wikipedia word translations in multiple languages",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest test.js && standard",
"lint": "standard --fix"
},
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"standard": "^16.0.3",
"supertest": "^6.0.1"
},
"dependencies": {
"cors": "~2.1.1",
"express": "^4.17.1",
"jade": "~1.1.5",
"lodash": "^4.17.20",
"logfmt": "git+https://github.com/zeke/node-logfmt",
"marked": "~0.3.1",
"merge": "~1.1.2",
"wikipedia-translator": "^1.2.0",
"wikipedias": "^1.0.0"
},
"keywords": [
"translation",
"words",
"language",
"scraping",
"wikipedia"
],
"standard": {
"env": [
"mocha"
]
}
}