forked from maticnetwork/dagger.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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": "eth-dagger",
"version": "0.0.3",
"description": "Library to connect with dagger server and manage subscriptions for Ethereum",
"main": "lib/index.js",
"bin": {
"woodendagger": "lib/wooden-dagger.js"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"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",
"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/jdkanani/eth-dagger.js.git"
},
"keywords": [
"ethereum",
"es6",
"dagger",
"matic"
],
"author": "Jaynti Kanani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdkanani/eth-dagger.js/issues"
},
"homepage": "https://github.com/jdkanani/eth-dagger.js",
"dependencies": {
"@babel/polyfill": "7.0.0-beta.54",
"async-mqtt": "^1.0.1",
"escape-string-regexp": "^1.0.5",
"ethereumjs-util": "^5.2.0",
"ethjs-util": "^0.1.6",
"mosca": "^2.5.2",
"web3": "^1.0.0-beta.22",
"webpack-cli": "2.0.10",
"yargs": "^8.0.2"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.54",
"@babel/core": "7.0.0-beta.54",
"@babel/preset-env": "7.0.0-beta.54",
"@babel/register": "^7.0.0-beta.56",
"babel-eslint": "7.2.3",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-add-module-exports": "^0.2.1",
"chai": "3.5.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.2.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "3.3.0",
"webpack": "4.1.0"
}
}