-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "translation-server",
"version": "2.0.5",
"description": "Zotero translation server",
"license": "AGPL-3.0-only",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zotero/translation-server-v2"
},
"dependencies": {
"aws-sdk": "^2.326.0",
"config": "^1.30.0",
"iconv-lite": "^0.4.24",
"jsdom": "^13.1.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-route": "^3.2.0",
"md5": "^2.2.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"serverless-http": "^2.7.0",
"wicked-good-xpath": "git+https://git@github.com/zotero/wicked-good-xpath.git#1b88459",
"xregexp": "^4.2.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"@zotero/eslint-config": "^1.0.2",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"sinon": "^6.1.4",
"supertest": "^3.1.0"
},
"scripts": {
"start": "node src/server.js",
"start:debug": "node --inspect src/server.js",
"test": "NODE_ENV=test ALLOW_CONFIG_MUTATIONS=1 node_modules/.bin/mocha test/*_test.js",
"test:import": "DEBUG_LEVEL=0 NODE_ENV=test ALLOW_CONFIG_MUTATIONS=1 node_modules/.bin/mocha test/import_test.js"
}
}