forked from dapperlabs/dappauth.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.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
{
"name": "@dapperlabs/dappauth",
"version": "2.0.5",
"description": "A util to prove actionable control ('ownership') over a public Ethereum address using eth_sign",
"keywords": [
"ethereum",
"ownership",
"control",
"eth_sign"
],
"repository": "github:dapperlabs/dappauth.js",
"main": "index.js",
"scripts": {
"test": "npm run eslint && nyc mocha test/*",
"prettier:watch": "onchange '**/*.js' -- prettier --write {{changed}}",
"eslint": "eslint ./ --ext .js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Pazams <[email protected]>",
"license": "MIT",
"dependencies": {
"ethereumjs-util": "^6.0.0",
"web3": "^1.2.1",
"ethereumjs-abi": "^0.6.6",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"onchange": "^5.0.2",
"prettier": "^1.14.3"
}
}