-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
54
55
56
{
"name": "sunbeam",
"version": "9.0.2",
"description": "JS lib for eosfinex",
"main": "lib/index.js",
"scripts": {
"test": "standard && mocha",
"prepare": "npm run setup-build && npm run babelify",
"setup-build": "rm -rf dist && mkdir -p dist",
"babelify": "browserify -s Sunbeam lib/index.js -o dist/index.js -t [ babelify --presets [ @babel/preset-env ] --global ]",
"standard": "standard"
},
"keywords": [
"eos",
"bfx",
"bitfinex"
],
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/sunbeam.git"
},
"author": "Robert <robert@bitfinex.com>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@scatterjs/core": "^2.7.53",
"@scatterjs/eosjs2": "^1.5.35",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babelify": "^9.0.0",
"browserify": "^16.2.2",
"eosjs": "^20.0.3",
"mocha": "^5.2.0",
"node-fetch": "^2.2.1",
"standard": "^14.0.0",
"universal-authenticator-library": "^0.3.0",
"ws": "^7.3.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.0.0",
"cbq": "git+https://github.com/bitfinexcom/cbq-js.git",
"lodash": "^4.17.20",
"mandelbrot": "github:bitfinexcom/mandelbrot#master"
},
"browserslist": [
"IE 11",
"Safari 11"
],
"browser": {
"url": false
}
}