-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 966 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
39
40
41
42
43
44
45
46
{
"name": "coinbase-service",
"version": "1.0.4",
"description": "Wrapper for the coinbase bitcoin wallet & exchange API",
"main": "lib/index.js",
"scripts": {
"test": "DEBUG= ./node_modules/.bin/mocha -t 5000",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "[email protected]:alejonext/coinbase-service.git"
},
"dependencies": {
"crypto-js": "3.1.6",
"microtime": "^2.1.1",
"request": "^2.72.0"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-plugin-object-assign": "^1.2.1",
"mocha": "*",
"should": "*",
"sinon": "*"
},
"keywords": [
"coinbase",
"bitcoin",
"wallet",
"api"
],
"pre-push": [
"rm -rf tmp",
"rm -rf .sass-cache",
"node ../testers/publish.js",
"node ../testers/pre-push.js"
],
"author": "AlejoNext",
"license": "MIT",
"babel": {
"presets": [
"es2015"
],
"plugins" : ["object-assign"]
}
}