forked from blockchain/bitcoin-unocoin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.01 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bitcoin-unocoin-client",
"version": "0.3.4",
"description": "Buy and sell Bitcoin using Unocoin API.",
"repository": {
"type": "git",
"url": "https://github.com/blockchain/bitcoin-unocoin-client.git"
},
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"prepublish": "node_modules/.bin/babel src --presets babel-preset-es2015 --out-dir lib",
"test": "./node_modules/karma/bin/karma start karma.conf.js"
},
"keywords": [
"Blockchain",
"Unocoin"
],
"author": {
"name": "Blockchain.info",
"url": "https://blockchain.info"
},
"contributors": [
"Sjors Provoost <sjors@blockchain.com>",
"Justin Tormey <justin@blockchain.com>",
"Phil London <phil@blockchain.com>",
"Philip Welber <welber@blockchain.com>",
"Jaume Pernas <jaume@blockchain.com>"
],
"license": "ISC",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "6.16.*",
"babel-preset-es2015": "6.16.*",
"babelify": "7.3.*",
"bitcoin-exchange-client": "~0.4.1"
},
"devDependencies": {
"browserify": "13.*",
"browserify-istanbul": "2.0.*",
"coveralls": "^2.11.14",
"eslint": "2.*",
"fetch-mock": "^5.11.0",
"git-changelog": "1.0.*",
"isomorphic-fetch": "^2.2.1",
"jasmine-core": "^2.2.0",
"jasmine-es6-promise-matchers": "^2.0.1",
"karma": "0.13.*",
"karma-browserify": "5.1.*",
"karma-coverage": "1.1.*",
"karma-jasmine": "1.0.*",
"karma-osx-reporter": "0.2.*",
"karma-phantomjs-launcher": "1.0.*",
"phantomjs-prebuilt": "2.1.*",
"prompt": "^1.0.0",
"proxyquireify": "3.2.*",
"semistandard": "8.*",
"watchify": "3.*"
},
"semistandard": {
"ignore": [
"tests/",
"README.md"
],
"globals": [
"fetch",
"beforeEach",
"afterEach",
"describe",
"expect",
"it",
"JasminePromiseMatchers",
"jasmine",
"spyOn",
"spyOnProperty",
"pending",
"fail"
]
},
"engines": {
"node": ">=7.5"
}
}