-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
{
"name": "@oipwg/exchange-rate",
"version": "2.0.1",
"description": "Get the Exchange Rate for many cryptocurrencies",
"main": "lib/index.js",
"dependencies": {
"axios": "^1.3.4",
"@oipwg/insight-explorer": "^2.0.1"
},
"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",
"jsdoc": "^4.0.2",
"jsdoc-template": "git+https://github.com/oipwg/jsdoc-template.git",
"taffydb": "^2.7.3",
"standard": "^17.0.0"
},
"scripts": {
"test": "standard && jest",
"standard": "standard",
"standard-fix": "standard --fix",
"compile": "./node_modules/.bin/babel -d lib/ src/",
"prepublishOnly": "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/oip-exchange-rate.git"
},
"keywords": [
"OIP"
],
"contributors": [
"Sky Young",
"Jeremiah <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/oipwg/oip-exchange-rate/issues"
},
"homepage": "https://github.com/oipwg/oip-exchange-rate#readme",
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"files": [
"lib"
],
"standard": {
"ignore": [
"docs/"
]
}
}