forked from eduardoalthaus/Node-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 725 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 725 Bytes
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
{
"name": "gin-platform-node-sdk",
"version": "1.1.0",
"description": "SDK for the GIN Platform REST API",
"main": "index.js",
"scripts": {
"build": "babel src -d dist && cp -f package.json dist/package.json",
"distrib": "npm publish dist",
"test": "mocha --compilers js:babel-core/register"
},
"keywords": [
"gin",
"masternode",
"api",
"node",
"bitcoin"
],
"author": "GIN Platform Ltd.",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"node-fetch": "^2.3.0",
"uuid-validate": "0.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"mocha": "^5.2.0"
}
}