-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
66 lines (66 loc) · 2.17 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
{
"name": "steemjs-lib",
"version": "0.3.7",
"description": "Pure JavaScript Steem 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/steemjs-lib.min.js -- build/steemjs-lib.js",
"browserify": "browserify dist/browser.js --standalone steemJS -o build/steemjs-lib.js -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svk31/steemjs-lib.git"
},
"author": "Sigve Kvalsvik <[email protected]> (https://github.com/svk31)",
"contributors": [
"James Calfee <[email protected]> (https://github.com/jcalfee/)"
],
"license": "BSD-2-Clause-FreeBSD",
"bugs": {
"url": "https://github.com/svk31/steemjs-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"
}
}