forked from zotero/translation-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"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.1392.0",
"config": "^3.3.9",
"iconv-lite": "^0.6.3",
"jsdom": "^22.1.0",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"koa-route": "^3.2.0",
"md5": "^2.3.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.9",
"serverless-http": "^3.2.0",
"w3c-xmlserializer": "^4.0.0",
"wicked-good-xpath": "git+https://[email protected]/zotero/wicked-good-xpath.git#1b88459",
"xregexp": "^5.1.1",
"yargs": "^17.7.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"
}
}