forked from AudiusProject/hedgehog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.2 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
{
"name": "@audius/hedgehog",
"version": "1.0.4",
"description": "A Metamask alternative that empowers you to build good UX",
"browser": {
"node-localstorage": false
},
"dependencies": {
"bip39": "^2.5.0",
"browserify-cipher": "^1.0.1",
"crypto-js": "^3.1.9-1",
"ethereumjs-wallet": "^0.6.3",
"lodash": ">=4.17.13",
"node-localstorage": "^1.3.1",
"randombytes": "^2.0.6",
"safe-buffer": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"standard": "^12.0.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
},
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/standard",
"lint-fix": "./node_modules/.bin/standard --fix",
"test": "node_modules/.bin/nyc node_modules/.bin/mocha tests/ && npm run lint"
},
"standard": {
"globals": [
"Blob",
"self",
"Worker",
"postMessage",
"describe",
"it",
"beforeEach"
],
"ignore": [
"/dist/**/*.js"
]
},
"nyc": {
"exclude": [
"src/authWorker.js",
"src/utils.js",
"tests/**/*.js"
]
},
"author": "",
"license": "MIT"
}