forked from rsksmart/nod3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.23 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": "@rsksmart/nod3",
"version": "0.4.1",
"description": "Minimal Javascript RPC communication with Ethereum / RSK node",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npx babel src -d dist",
"clean": "rm -rf dist",
"md": "mkdir dist",
"lint": "npx eslint src/**/*",
"test": "npx mocha ./test/**/*.spec.js"
},
"bin": {
"nod3-cli": "./dist/cli/nod3-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/nod3.git"
},
"author": "emi",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsksmart/nod3/issues"
},
"homepage": "https://github.com/rsksmart/nod3#readme",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.5.0",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^7.1.1",
"mocha-eslint": "^4.1.0",
"sinon": "^7.3.1"
}
}