-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.58 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
{
"name": "esteem-lib",
"version": "0.4.7",
"description": "Pure JavaScript eSteem library for node.js and browsers.",
"browser": {
"ws": false,
"crypto": false
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive",
"test:chain": "mocha --compilers js:babel-core/register ./test/chain --recursive --watch",
"test:ecc": "mocha --compilers js:babel-core/register ./test/ecc --recursive",
"test:serializer": "mocha --compilers js:babel-core/register ./test/serializer --recursive",
"test:watch": "npm test -- --watch",
"clean" : "node clean.js",
"prebuild": "npm run clean",
"build": "babel lib --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build",
"doc": "esdoc -c esdoc.json",
"example-sig": "nodemon ./examples/signature.js",
"prebrowserify": "rm -rf ./build/* && npm run build",
"postbrowserify": "uglifyjs --compress --mangle --sequences --drop_console --output build/esteem-lib.min.js -- build/esteem-lib.js",
"browserify": "browserify dist/browser.js --standalone esteem -o build/esteem-lib.js -d",
"all": "npm run clean && rm -rf ./build/* && npm run build && browserify dist/browser.js --standalone esteem -o build/esteem-lib.js -d && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esteemapp/esteem-lib.git"
},
"author": "Feruz <[email protected]> (https://github.com/feruzm)",
"contributors": [
"Fabien <[email protected]> (https://github.com/adcpm/)",
"Tim Fesenko <[email protected]> (https://github.com/roadscape/)",
"James Calfee <[email protected]> (https://github.com/jcalfee/)",
"Sigve Kvalsvik <[email protected]> (https://github.com/svk31)",
"Someguy123 <[email protected]> (https://github.com/Someguy123)"
],
"license": "BSD-2-Clause-FreeBSD",
"bugs": {
"url": "https://github.com/esteemapp/esteem-lib/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"main": "./dist/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.5",
"deep-equal": "^1.0.1",
"ecurve": "^1.0.2",
"event-emitter": "^0.3.4",
"immutable": "^3.7.6",
"secure-random": "^1.1.1",
"steem-rpc": "^0.6.6"
},
"devDependencies": {
"assert": "^1.3.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"browserify": "^13.1.0",
"esdoc": "^0.4.3",
"mocha": "^2.5.3",
"uglifyjs": "^2.4.10"
}
}