-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.99 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
71
72
{
"name": "navcoin-js",
"version": "1.1.182",
"description": "Navcoin Javascript Library",
"main": "./dist/index.js",
"scripts": {
"prepublish": "npm run build",
"clean": "rm -rf dist browser&& mkdir dist&&mkdir browser",
"build": "babel -d ./dist ./src -s&&cd web && npm i && npm run build && cd .. ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"sourceType": "module",
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@aguycalled/bitcore-lib": "^0.15.117",
"@aguycalled/bitcore-message": "^1.0.4",
"@aguycalled/bitcore-mnemonic": "^1.5.4",
"@aguycalled/bitcore-p2p": "^5.0.14",
"@aguycalled/dexie-encrypted": "^2.0.4",
"@aguycalled/electrum-client-js": "^0.1.14",
"@aguycalled/noble-bls12-381": "^1.2.1",
"async-mutex": "^0.3.2",
"babelify": "^10.0.0",
"crypto-pouch": "^4.0.1",
"dexie": "^3.2.2",
"electrum-mnemonic": "^2.0.0",
"fake-indexeddb": "^3.1.7",
"indexeddbshim": "^8.0.0",
"localforage": "^1.9.0",
"lodash": "^3.10.1",
"nedb-async": "^0.1.6",
"pouchdb": "^7.2.2",
"pouchdb-adapter-memory": "^7.2.2",
"pouchdb-adapter-websql": "^7.0.0",
"pouchdb-all-dbs": "^1.1.1",
"queue": "^6.0.2",
"websql": "^1.0.0"
},
"browser": {
"crypto": "crypto-browserify"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/runtime": "^7.16.7",
"babel-preset-es2015": "^6.24.1",
"eslint": "^7.32.0",
"prettier": "2.4.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"react-native": {}
}