-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "0x-mesh-provider",
"version": "0.0.1",
"description": "A provider for connecting to 0x-mesh via websocket (with heartbeats)",
"main": "lib/index.js",
"module": "lib/main.js",
"scripts": {
"build": "npm run lint && npm run clean && npx babel src --out-dir lib",
"clean": "rimraf ./lib",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npx nodemon --exec npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marketprotocol/0x-mesh-provider.git"
},
"author": "MARKET Protocol <support@marketprotocol.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marketprotocol/0x-mesh-provider/issues"
},
"homepage": "https://github.com/marketprotocol/0x-mesh-provider#readme",
"dependencies": {
"esm": "^3.2.25",
"ethers": "^4.0.33",
"ws": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"nodemon": "^1.19.1",
"rimraf": "^2.6.3"
}
}