-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "openbazaar-node",
"version": "1.3.5",
"description": "A node.js library for the OpenBazaar API. Uses async/await ECMA2017",
"main": "openbazaar.js",
"scripts": {
"test": "NODE_ENV=test nyc --reporter=html --reporter=text ./node_modules/.bin/mocha test/tests/*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/P2PVPS/openbazaar-node.git"
},
"keywords": [
"openbazaar",
"api"
],
"author": "Chris Troutner",
"license": "MIT",
"bugs": {
"url": "https://github.com/P2PVPS/openbazaar-node/issues"
},
"homepage": "https://github.com/P2PVPS/openbazaar-node#readme",
"dependencies": {
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.4",
"nyc": "^11.6.0"
}
}