forked from bitshares/bitsharesjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.46 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
84
85
86
87
88
89
{
"name": "citvyjs",
"version": "3.3.1",
"description": "Pure JavaScript BitShares library for node.js and browsers.",
"browser": {
"ws": false,
"crypto": false
},
"scripts": {
"test:watch": "npm test -- --watch",
"clean": "rimraf dist build es",
"prebuild": "npm run clean",
"build": "cross-env BABEL_ENV=cjs babel lib -d dist",
"webpack": "webpack --config webpack.config.js",
"build-es": "cross-env BABEL_ENV=es babel lib -d es",
"postbuild": "npm run browserify && npm run build-es && npm run webpack",
"build:watch": "babel lib -d dist --watch",
"prebrowserify": "mkdirp build",
"browserify": "cross-env NODE_ENV=production browserify --full-paths false dist/browser.js --standalone bitshares_js -o build/bitsharesjs.js -d",
"postbrowserify": "cross-env NODE_ENV=production minify build/bitsharesjs.js --mangle --outFile build/bitsharesjs.min.js",
"precommit": "pretty-quick --staged && npm run test",
"prepublish": "npm run build && npm run test",
"doc": "esdoc -c esdoc.json",
"example:asset": "babel-node examples/updateAsset",
"example:transfer": "babel-node examples/transfer",
"example:feed": "babel-node examples/publishFeed",
"example:co-update": "babel-node examples/callOrderUpdate",
"example:chainStore": "babel-node examples/chainStore",
"example:privKey": "babel-node examples/privKey",
"example:createHtlc": "babel-node examples/createHtlc",
"example:redeemHtlc": "babel-node examples/redeemHtlc",
"example:anything": "babel-node examples/anything",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitshares/bitsharesjs.git"
},
"author": "BitShares UI Team <[email protected]>",
"contributors": [
"Sigve Kvalsvik <[email protected]> (https://github.com/svk31)",
"James Calfee <[email protected]> (https://github.com/jcalfee/)",
"Daniel Larimer <[email protected]> (https://github.com/bytemaster/)",
"Valentine Zavgorodnev <[email protected]> (https://github.com/valzav/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitshares/bitsharesjs/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"main": "./dist/index.js",
"jsnext:main": "./es/index.js",
"dependencies": {
"bigi": "1.4.2",
"citvyjs-ws": "^3.1.2",
"bs58": "4.0.1",
"bytebuffer": "5.0.1",
"create-hash": "1.2.0",
"create-hmac": "1.1.7",
"crypto-js": "3.1.9-1",
"deep-equal": "1.0.1",
"ecurve": "1.0.6",
"event-emitter": "0.3.5",
"immutable": "3.8.2",
"safe-buffer": "^5.2.1",
"secure-random": "1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"assert": "^2.0.0",
"babel-minify": "^0.5.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-minify": "^0.5.1",
"browserify": "^16.5.1",
"cross-env": "^5.2.1",
"mocha": "^6.2.3",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"rimraf": "^2.7.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}