This repository has been archived by the owner on May 27, 2022. It is now read-only.
forked from peerplays-network/peerplaysjs-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.11 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
{
"name": "peerplaysjs-lib",
"version": "0.4.24",
"description": "Pure JavaScript Peerplaysjs library for node.js and browsers.",
"browser": {
"ws": false,
"crypto": false
},
"scripts": {
"test": "BABEL_ENV=test mocha --compilers js:babel-register --recursive",
"test:chain": "BABEL_ENV=test mocha --compilers js:babel-register ./test/chain --recursive",
"test:ecc": "BABEL_ENV=test mocha --compilers js:babel-register ./test/ecc --recursive",
"test:serializer": "BABEL_ENV=test mocha --compilers js:babel-register ./test/serializer --recursive",
"test:watch": "npm test -- --watch",
"clean": "rm -rf ./dist/* & rm -rf ./build/*",
"prebuild": "npm run clean",
"build": "babel lib -d dist",
"postbuild": "npm run browserify",
"build:watch": "babel lib -d dist --watch",
"prebrowserify": "rm -rf ./build/*",
"browserify": "browserify -t [browserify-package-json --global=true] -p [bundle-collapser/plugin] dist/browser.js --full-path=false --standalone peerplays_js -o build/peerplaysjs-lib.js -d",
"postbrowserify": "uglifyjs --compress --mangle --sequences --drop_console --output build/peerplaysjs-lib.min.js -- build/peerplaysjs-lib.js",
"doc": "esdoc -c esdoc.json",
"example:transfer": "babel-node examples/transfer",
"example:chainStore": "babel-node examples/chainStore",
"example:privKey": "babel-node examples/privKey"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PBSA/peerplaysjs-lib"
},
"author": "Sigve Kvalsvik <bitsharesblocks@gmail.com> (https://github.com/svk31)",
"contributors": [
"James Calfee <james@jcalfee.info> (https://github.com/jcalfee/)",
"Daniel Larimer <dan@cryptonomex.com> (https://github.com/bytemaster/)",
"Valentine Zavgorodnev <valentine.zavgorodnev@gmail.com> (https://github.com/valzav/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PBSA/peerplaysjs-lib/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"main": "dist/index.js",
"jsnext:main": "lib/index.js",
"dependencies": {
"assert": "^1.3.0",
"bigi": "^1.4.1",
"bs58": "^3.0.0",
"buffer": "^5.1.0",
"bytebuffer": "^5.0.0",
"create-hash": "^1.1.2",
"create-hmac": "^1.1.4",
"crypto-js": "^3.1.9-1",
"deep-equal": "^1.0.1",
"ecurve": "^1.0.2",
"event-emitter": "^0.3.4",
"immutable": "^3.7.6",
"peerplaysjs-ws": "git+ssh://git@github.com:PBSA/peerplaysjs-ws.git",
"secure-random": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"browserify": "^13.1.0",
"browserify-package-json": "^1.0.1",
"bundle-collapser": "^1.3.0",
"esdoc": "^1.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"uglifyjs": "^2.4.10"
}
}