-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 908 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
29
30
31
32
33
34
35
36
37
38
{
"name": "node-coinigy",
"version": "2.1.0",
"description": "Promised based node wrapper for Coinigy REST API",
"main": "./dist/index.js",
"scripts": {
"pretest": "npm run build",
"test": "mocha test/test.js",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skylinezum/node-coinigy.git"
},
"keywords": [
"coinigy",
"promise",
"api",
"node",
"wrapper"
],
"author": "Jimmy",
"license": "MIT",
"bugs": {
"url": "https://github.com/skylinezum/node-coinigy/issues"
},
"homepage": "https://github.com/skylinezum/node-coinigy#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"mocha": "^3.4.2"
},
"dependencies": {
"axios": "^0.19.0"
}
}