forked from scientistnik/btsdex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "btsdex",
"version": "0.7.10",
"description": "Package for work with BitShares DEX",
"main": "lib",
"bin": {
"btsdex": "./cli.js"
},
"scripts": {
"dev": "nodemon --exec yarn build --watch src",
"prebuild": "rm -rf lib",
"build": "babel src -d lib",
"postbuild": "yarn browserify",
"prebrowserify": "rm -rf build",
"browserify": "browserify lib/index.js --standalone BitShares -o build/btsdex.js -d",
"postbrowserify": "minify build/btsdex.js -o build/btsdex.min.js",
"test": "mocha --timeout 10000",
"style": "prettier --check src",
"style-all": "prettier --check src packages/api/src packages/ecc/src packages/serializer/src"
},
"keywords": [
"bitshares"
],
"author": "scientistnik",
"license": "MIT",
"prettier": {
"arrowParens": "avoid"
},
"dependencies": {
"@babel/runtime": "^7.7.4",
"assert": "^1.5.0",
"bigi": "^1.4.2",
"bignumber.js": "^7.2.1",
"btsdex-api": "^0.7.2",
"btsdex-ecc": "^0.7.0",
"btsdex-serializer": "^0.7.8",
"bytebuffer": "^5.0.1",
"lzma": "^2.3.2",
"safe-buffer": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-minify": "^0.5.1",
"browserify": "^16.5.0",
"dotenv": "^6.0.0",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"prettier": "2.6.1"
}
}