-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "@digitallinguistics/api",
"version": "0.3.0",
"description": "Source code for the DLx database API and Web Socket.",
"contributors": [
{
"name": "Daniel W. Hieber",
"email": "dhieber@umail.ucsb.edu",
"url": "http://danielhieber.com"
}
],
"license": "MIT",
"keywords": [
"digital linguistics",
"dlx",
"language documentation",
"language revitalization",
"linguistics",
"University of California, Santa Barbara"
],
"homepage": "https://github.com/digitallinguistics/dlx-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/digitallinguistics/dlx-api.git"
},
"bugs": {
"url": "https://github.com/digitallinguistics/dlx-api/issues"
},
"main": "app.js",
"engines": {
"node": ">=8.x"
},
"scripts": {
"clean": "node test/utilities/clean.js",
"test": "npm run clean & jasmine JASMINE_CONFIG_PATH=test/jasmine.json & npm run clean"
},
"dependencies": {
"@digitallinguistics/dlx-js": "^0.17.0",
"body-parser": "^1.17.2",
"documentdb": "^1.12.2",
"express": "^4.15.4",
"express-jwt": "^5.3.0",
"express-rate-limit": "^2.9.0",
"express-routemap": "^1.1.0",
"helmet": "^3.8.1",
"jsonwebtoken": "^7.4.2",
"socket.io": "^2.0.3",
"socket.io-redis": "^5.1.0",
"socketio-jwt": "^4.5.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"jasmine": "^2.7.0",
"supertest": "^2.0.1"
}
}