-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 897 Bytes
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
{
"name": "docloop",
"version": "1.0.5",
"description": "Service to convert annotations on one platform into issue on another.",
"main": "docloop.js",
"scripts": {
"test": "mkdir testdb; mongod --dbpath=testdb --port 27777 --fork --logpath /dev/null && mocha || true",
"posttest": "mongod --dbpath=testdb --port 27777 --shutdown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docloop/core.git"
},
"keywords": [
"issue",
"annotation"
],
"author": "Andreas Pittrich",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/docloop/core/issues"
},
"homepage": "https://github.com/docloop/core#readme",
"dependencies": {
"bluebird": "^3.7.2",
"connect-mongo": "^3.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongodb": "^3.6.0"
},
"devDependencies": {
"mocha": "^8.1.2"
}
}