-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
70 lines (70 loc) · 2.11 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@maticnetwork/dagger",
"version": "0.2.0",
"description": "Library to connect with dagger server and manage subscriptions for Ethereum and Matic",
"main": "lib/index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"aedes": "aedes",
"broker": "aedes start --protos ws --ws-port 1883",
"clean": "rm -rf lib",
"build": "npm run lint && npm run clean && babel src/ --out-dir lib/ && npm run pack",
"lint": "eslint src/**/*.js test/**/*.spec.js",
"lint:fix": "eslint --fix src/**/*.js test/**/*.spec.js",
"test": "mocha --require @babel/register --colors ./test/**/*.spec.js",
"test:watch": "mocha --require @babel/register --colors -w ./test/**/*.spec.js",
"prepublish": "npm run build",
"pack": "webpack && webpack --env build"
},
"repository": {
"type": "git",
"url": "https://github.com/maticnetwork/dagger.js.git"
},
"keywords": [
"ethereum",
"es6",
"dagger",
"matic"
],
"author": "Matic Network <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maticnetwork/dagger.js/issues"
},
"homepage": "https://github.com/maticnetwork/dagger.js",
"dependencies": {
"@babel/polyfill": "7.8.7",
"async-mqtt": "^2.5.0",
"escape-string-regexp": "^3.0.0",
"ethereumjs-util": "^6.2.1",
"mqtt-regex": "^1.0.5",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"aedes-cli": "^0.2.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "1.0.2",
"chai": "4.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-standard": "14.1.1",
"eslint-loader": "4.0.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-standard": "4.0.1",
"mocha": "7.1.1",
"web3": "1.2.6",
"webpack": "4.42.1",
"webpack-cli": "^3.3.11"
}
}