-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
81 lines (81 loc) · 2.25 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
73
74
75
76
77
78
79
80
81
{
"name": "js-oip",
"version": "3.0.0",
"description": "A Javascript Library to fully interact with the Open Index Protocol",
"main": "lib/index.js",
"scripts": {
"test": "npm run test:unit",
"test:flo": "jest test/unit/modules/flo",
"test:unit": "jest test/unit --detectOpenHandles --verbose",
"test:integration": "jest test/integration --detectOpenHandles --verbose",
"test:format": "standard",
"compile": "./node_modules/.bin/babel -d lib/ src/",
"prepublishOnly": "npm run test && npm run compile",
"code-format": "standard --fix",
"prepush": "npm run compile && npm run generate-docs",
"generate-docs": "node_modules/.bin/jsdoc --readme ./README.md -c jsdoc.json",
"examples:registerPublisher": "npm run compile && node examples/registerPublisher.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oipwg/js-oip.git"
},
"keywords": [
"OIP",
"Index",
"Flo",
"Artifact",
"Publisher",
"Retailer",
"Affiliate"
],
"author": "Ryan Chacon <[email protected]>",
"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": "^24.8.0",
"jest": "^27.5.1",
"jest-expect-message": "^1.0.2",
"jsdoc": "^3.6.3",
"jsdoc-template": "git+https://github.com/oipwg/jsdoc-template.git",
"standard": "^12.0.1"
},
"dependencies": {
"axios": "^0.26.1",
"bitcoinjs-lib": "5.0.3",
"bitcoinjs-message": "2.0.0",
"blgr": "^0.1.8",
"coinselect": "^3.1.11",
"core-js": "^2.6.5",
"fcoin": "git+https://github.com/oipwg/fcoin.git",
"ipfs-http-client": "^56.0.1",
"node-localstorage": "^1.3.1",
"rfc6902": "^3.0.1",
"varuint-bitcoin": "^1.1.0",
"wif": "^2.0.6"
},
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "jest-expect-message"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/docs/*"
]
}
}