forked from oipwg/js-oip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "js-oip",
"version": "1.0.4",
"description": "A Javascript Library to fully interact with the Open Index Protocol",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage --detectOpenHandles",
"compile": "./node_modules/.bin/babel -d lib/ src/",
"prepare": "npm run generate-docs && npm run compile",
"generate-docs": "node_modules/.bin/jsdoc --readme ./README.md -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oipwg/js-oip.git"
},
"keywords": [
"OIP",
"Index",
"Flo",
"Artifact",
"Publisher",
"Retailer",
"Affiliate"
],
"author": "Ryan Chacon <ohryan@alexandria.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oipwg/js-oip/issues"
},
"homepage": "https://github.com/oipwg/js-oipx#readme",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/node": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.0.0-beta.51",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"jsdoc-template": "git+https://github.com/oipwg/jsdoc-template.git"
},
"dependencies": {
"axios": "^0.18.0",
"bitcoinjs-lib": "git+https://github.com/oipwg/bitcoinjs-lib.git#export-classify",
"bitcoinjs-message": "^2.0.0",
"coinselect": "^3.1.11",
"fcoin": "^1.0.0-beta.34",
"insight-explorer": "^1.0.10",
"ipfs": "^0.34.4",
"ipfs-http-client": "^28.0.0",
"node-localstorage": "^1.3.1",
"varuint-bitcoin": "^1.1.0",
"wif": "^2.0.6"
},
"files": [
"lib"
],
"jest": {
"testEnvironment": "node"
}
}