forked from EOSIO/eosjs-ecc
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "eosjs-ecc-rn",
"version": "4.0.6-rn",
"description": "Elliptic curve cryptography functions - react native version",
"keywords": [
"ECC",
"Private Key",
"Public Key",
"Signature",
"AES",
"Encryption",
"Decryption",
"React Naative"
],
"author": "gamexcoin",
"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-rn.js -s eosjs_ecc_rn 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-rn.js -o lib/eosjs-ecc-rn.min.js --source-map --compress --mangle",
"docs": "yarn documentation -- readme src/api_common.js --section \"Common API\" --shallow",
"srisum": "npx srisum lib/eosjs-ecc-rn.*",
"prepublishOnly": "yarn build && yarn minimize && yarn test_lib && yarn docs && yarn srisum"
},
"repository": {
"type": "git",
"url": "git://github.com/Game-X-Coin/eosjs-ecc-rn.git"
},
"bugs": {
"url": "https://github.com/Game-X-Coin/eosjs-ecc-rn/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/Game-X-Coin/eosjs-ecc-rn",
"dependencies": {
"@babel/runtime": "7.4.4",
"assert": "1.4.1",
"bigi": "1.4.2",
"browserify-aes": "1.0.6",
"bs58": "4.0.1",
"buffer": "5.2.1",
"bytebuffer": "5.0.1",
"create-hash": "1.1.3",
"create-hmac": "1.1.6",
"crypto-js": "3.1.9-1",
"ecurve": "1.0.5"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.4",
"babel-preset-es2015": "6.24.1",
"browserify": "16.2.3",
"coveralls": "3.0.3",
"documentation": "8.1.1",
"istanbul": "0.4.5",
"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"
]
}
}