forked from WebOfTrustInfo/txref-conversion-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 800 Bytes
/
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
{
"name": "txref-converter-js",
"version": "2.0.0",
"description": "",
"main": "src/index.js",
"dependencies": {
"bech32": "^1.1.4",
"bent": "^7.1.1",
"jsonld": "^0.4.11"
},
"scripts": {
"test": "mocha test/test*.js -R progress",
"dev": "nodemon src/index.js -e js",
"doc": "./node_modules/jsdoc/jsdoc.js -c contrib/jsdoc.conf.json -t ./node_modules/ink-docstrap/template -r",
"build": "./node_modules/browserify/bin/cmd.js ./src/txConverter.js -o ./build/txConverter-browserified.js -d"
},
"author": "Michael Hawkins",
"license": "MIT",
"devDependencies": {
"browserify": "^16.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.3",
"mocha": "^7.1.1",
"nodemon": "^2.0.6"
}
}