-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.12 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
{
"name": "dcorejs-lib",
"version": "1.6.2",
"description": "Low level javascript library for Decent blockchain",
"browser": {
"ws": false,
"crypto": false
},
"scripts": {
"start": "npm run build-js -- -w",
"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",
"clean": "rm -rf ./dist/* & rm -rf ./lib/*",
"prebuild": "npm run clean",
"build": "npm run build-js && npm run pack",
"build-js": "BABEL_ENV=cjs babel src -d lib",
"pack": "webpack --config webpack.config.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": "https://github.com/DECENTfoundation/dcorejs-lib"
},
"author": "DECENT Foundation <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 6.0.0"
},
"main": "./lib/index.js",
"dependencies": {
"ReconnectingWebSocket": "git+https://github.com/bitshares/reconnecting-websocket.git",
"bigi": "^1.4.1",
"bs58": "^3.1.0",
"bytebuffer": "^5.0.1",
"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",
"esdoc-es7-plugin": "0.0.3",
"event-emitter": "^0.3.4",
"immutable": "^3.7.6",
"reconnecting-websocket": "4.0.0-rc5",
"secure-random": "^1.1.1",
"ws": "3.3.3"
},
"devDependencies": {
"@types/node": "^8.0.53",
"assert": "^1.3.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.16.0",
"esdoc": "^0.4.3",
"mocha": "^3.2.0",
"webpack": "^3.8.1"
}
}