forked from EOSIO/eosjs-ecc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
{
"name": "eosjs-ecc",
"version": "4.0.8",
"description": "Elliptic curve cryptography functions",
"keywords": [
"ECC",
"Private Key",
"Public Key",
"Signature",
"AES",
"Encryption",
"Decryption"
],
"main": "lib/index.js",
"files": [
"README.md",
"docs",
"lib"
],
"scripts": {
"test": "mocha --use_strict src/*.test.js",
"test_lib": "mocha --use_strict lib/*.test.js",
"coverage": "nyc --reporter=lcov --reporter=text npm test",
"coveralls": "yarn coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build": "yarn build_lib && yarn build_browser",
"build_lib": "rm -f lib/* && babel src --out-dir lib",
"build_browser": "mkdir -p lib && browserify -o lib/eosjs-ecc.js -s eosjs_ecc lib/index.js",
"build_browser_test": "yarn build && browserify -o dist/test.js lib/*.test.js",
"documentation": "node_modules/documentation/bin/documentation.js",
"minimize": "terser lib/eosjs-ecc.js -o lib/eosjs-ecc.min.js --source-map --compress --mangle",
"docs": "yarn documentation -- readme src/api_common.js --section \"Common API\" --shallow",
"srisum": "npx srisum lib/eosjs-ecc.*",
"prepublishOnly": "yarn build && yarn minimize && yarn test_lib && yarn docs"
},
"repository": {
"type": "git",
"url": "git://github.com/EOSIO/eosjs-ecc.git"
},
"dependencies": {
"@babel/runtime": "7.6.0",
"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": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"browserify": "^16.2.3",
"coveralls": "^3.0.3",
"documentation": "^12.1.4",
"mocha": "^5.2.0",
"nyc": "^14.1.0",
"terser": "^3.17.0"
},
"nyc": {
"temp-directory": "./coverage/.nyc_output"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}