-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 KB
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
{
"name": "docloop-backend",
"version": "0.9.6",
"author": "Andreas Pittrich",
"license": "GPL-3.0",
"description": "Service to convert annotations on one platform into issue on another.",
"keywords": [
"annotation",
"issue"
],
"engine": {
"node": "8.9.4"
},
"bugs": {
"url": "https://github.com/docLoop/backend/issues"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"prestart": "mongod --dbpath=data --port 27017 --auth --fork --logpath /dev/null",
"start": "forever start index.js",
"stop": "forever stop index.js; mongod --dbpath data --shutdown",
"posttest": "mongod --dbpath=testdb --port 27777 --shutdown"
},
"dependencies": {
"docloop": "^1.0.6",
"docloop-github-adapter": "^1.0.3",
"docloop-paperhive-adapter": "^1.0.1",
"forever": "^3.0.2",
"npm": "^6.14.8"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.1.2",
"proxyquire": "^2.1.3",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docLoop/backend.git"
}
}