-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.23 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
{
"name": "@oipwg/insight-explorer",
"version": "2.0.1",
"description": "Easily retrieve information about transactions and addresses from any insight api explorer",
"main": "lib/index.js",
"scripts": {
"test": "standard && jest",
"standard": "standard",
"standard-fix": "standard --fix",
"compile": "./node_modules/.bin/babel -d lib/ src/",
"prepublishOnly": "npm run test && npm run compile"
},
"keywords": [
"Insight",
"API",
"blockchain",
"explorer",
"oip",
"flo",
"bitcoin",
"litecoin",
"explorer",
"address",
"transaction",
"lookup"
],
"contributors": [
"Sky Young",
"Ryan Chacon",
"Jeremiah <[email protected]>"
],
"license": "MIT",
"dependencies": {
"axios": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/cli": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"jest": "^29.5.0",
"standard": "^17.0.0"
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"files": [
"lib/*.js"
]
}