-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 2.78 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
{
"name": "graphenejs-lib",
"version": "0.5.2",
"description": "Pure JavaScript Bitshares/Graphene 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/* & rm -rf ./es/*",
"prebuild": "npm run clean",
"build": "BABEL_ENV=cjs babel lib -d dist",
"build-es": "BABEL_ENV=es babel lib -d es",
"postbuild": "npm run build-es",
"build:watch": "babel lib -d dist --watch",
"prebrowserify": "rm -rf ./build/*",
"browserify": "browserify --full-paths dist/browser.js --standalone steemJS -o build/graphenejs-lib.js -d",
"postbrowserify": "uglifyjs --compress --mangle --sequences --drop_console --output build/graphenejs-lib.min.js -- build/graphenejs-lib.js",
"prepublish": "npm run build",
"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/svk31/graphenejs-lib.git"
},
"author": "Sigve Kvalsvik <[email protected]> (https://github.com/svk31)",
"contributors": [
"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": "BSD-2-Clause-FreeBSD",
"bugs": {
"url": "https://github.com/svk31/graphenejs-lib/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"main": "./dist/index.js",
"jsnext:main": "./es/index.js",
"dependencies": {
"bigi": "^1.4.1",
"bs58": "^3.0.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",
"graphenejs-ws": "^0.2.0",
"immutable": "^3.7.6",
"secure-random": "^1.1.1"
},
"devDependencies": {
"assert": "^1.3.0",
"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",
"esdoc": "^0.4.3",
"mocha": "^3.2.0",
"uglifyjs": "^2.4.10"
}
}