forked from EOSIO/eosjs-ecc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "eosjs-ecc",
"version": "4.0.1",
"description": "Elliptic curve cryptography functions",
"keywords": "ECC, Private Key, Public Key, Signature, AES, Encryption, Decryption",
"main": "lib/index.js",
"scripts": {
"test": "mocha --use_strict src/*.test.js",
"test_lib": "mocha --use_strict lib/*.test.js",
"coverage": "nyc --reporter=html npm test",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build": "babel src --out-dir lib",
"build_browser": "npm run build && mkdir -p dist && browserify -o dist/eosjs-ecc.js -s eosjs_ecc lib/index.js && sha256sum dist/eosjs-ecc.js",
"build_browser_test": "npm run build && mkdir -p dist && browserify -o dist/test.js lib/*.test.js",
"documentation": "node_modules/documentation/bin/documentation.js",
"docs": "npm run documentation -- readme src/api_common.js --section \"Common API\" --shallow",
"prepublishOnly": "npm run build_browser && npm run test_lib && npm run docs"
},
"repository": {
"type": "git",
"url": "git://github.com/EOSIO/eosjs-ecc.git"
},
"dependencies": {
"bigi": "^1.4.2",
"browserify-aes": "^1.0.6",
"bs58": "^4.0.1",
"bytebuffer": "^5.0.1",
"create-hash": "^1.1.3",
"create-hmac": "^1.1.6",
"ecurve": "^1.0.5",
"randombytes": "^2.0.5"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^14.4.0",
"coveralls": "^3.0.0",
"documentation": "^5.3.2",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nyc": "^11.7.1"
},
"babel": {
"presets": [
"es2015"
]
}
}