-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "@marketprotocol/mpx-api-client",
"version": "1.0.0",
"description": "Javascript client for communicating with the MPX API",
"main": "index.js",
"scripts": {
"build": "babel mpxAPI.js -o index.js",
"docs": "npm run docs:html && npm run docs:md",
"docs:html": "rm -rf docs && jsdoc -c .jsdoc.json",
"docs:md": "rm -f docs/api.md && jsdoc2md --files mpxAPI.js > docs/api.md",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MARKETProtocol/mpx-api-client.git"
},
"keywords": [
"mpx",
"api",
"client"
],
"author": "Perfect Makanju <[email protected]",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/MARKETProtocol/mpx-api-client/issues"
},
"homepage": "https://github.com/MARKETProtocol/mpx-api-client#readme",
"dependencies": {
"jsonapi-serializer": "^3.6.4",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-polyfill": "^6.26.0",
"fetch-mock": "^7.3.1",
"jest": "^24.3.0",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"node-fetch": "^2.3.0"
}
}