This repository was archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
{
"name": "bitex-js",
"version": "1.0.3",
"description": "Bitex SDK in Javascript",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist/",
"build:main": "babel --out-dir dist --ignore test src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"test": "mocha --require babel-polyfill --require babel-register -R spec 'test/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitex-la/bitex-js.git"
},
"keywords": [
"bitex",
"bitcoin",
"client"
],
"author": "Nicolas Orchow <nico@bitex.la> (https://bitex.la/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitex-la/bitex-js/issues"
},
"homepage": "https://github.com/bitex-la/bitex-js#readme",
"dependencies": {
"axios": "0.17.1",
"heather-js": "^0.2.4",
"immutable": "^3.8.2",
"lodash": "^4.17.4",
"nock": "^9.3.2",
"pluralize": "^7.0.0"
},
"devDependencies": {
"axios-vcr": "git+https://github.com/bitex-la/axios-vcr.git",
"babel-cli": "^6.26.0",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2017": "^6.24.1",
"chai": "4.1.2",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"eslint": "^5.10.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-mocha": "^5.2.0",
"mocha": "4.1.0",
"rimraf": "2.6.2",
"webpack": "3.10.0"
}
}