This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@marklogic-community/grove-node",
"version": "1.1.0",
"description": "Node.js implementation of a Grove Middle-Tier for MarkLogic",
"repository": {
"type": "git",
"url": "git+https://github.com/marklogic-community/grove-node.git"
},
"keywords": [
"Node",
"MarkLogic"
],
"dependencies": {
"auth-header": "^1.0.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"express-session": "^1.17.0",
"helmet": "^3.22.0",
"marklogic": "^2.4.0",
"md5-hex": "^3.0.1",
"memorystore": "^1.6.2",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"q": "^1.5.1",
"underscore": "^1.13.2",
"www-authenticate": "^0.6.2"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run lint && mocha --exit --recursive",
"test:watch": "npm run lint && mocha --exit --watch --recursive",
"start": "cross-env NODE_ENV=development nodemon node-app.js",
"start:docker": "cross-env NODE_ENV=docker nodemon node-app.js",
"start:prod": "node node-app.js"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^7.0.2",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^9.2.2",
"nock": "^12.0.3",
"nodemon": "^2.0.15",
"prettier": "^1.19.1"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/marklogic-community/grove-node/issues"
},
"homepage": "https://github.com/marklogic-community/grove-node#readme",
"contributors": [
{
"name": "Matt Pileggi",
"url": "https://github.com/withjam"
},
{
"name": "Marianne Myers",
"url": "https://github.com/mariannemyers"
},
{
"name": "Geert Josten",
"url": "https://github.com/grtjn"
}
]
}