-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 973 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 973 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
{
"name": "listing-manager",
"version": "1.0.1",
"description": "Manages the OpenBazaar listings for P2P VPS marketplace",
"main": "listing-manager.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha ./test/*.js",
"test-travis": "./node_modules/mocha/bin/_mocha ./test/*.js",
"start": "node listing-manager.js"
},
"author": "chris.troutner@gmail.com",
"license": "MIT",
"repository": "https://github.com/RPiOVN/docker-connextcms-p2pvps",
"dependencies": {
"express": "^4.16.2",
"express3-handlebars": "^0.5.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"winston": "^2.4.0",
"openbazaar-node": "^1.3.5"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"eslint": "^4.12.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-unicorn": "^3.0.0",
"prettier": "^1.8.2",
"chai": "^4.1.2",
"mocha": "^3.0.2",
"nock": "^9.2.3"
}
}