This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.83 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
{
"name": "@virtualeconomy/js-v-sdk",
"version": "2.0.7",
"license": "MIT",
"description": "V Systems javascript library",
"keywords": ["vsys", "v-systems", "blockchain","contracts"],
"homepage": "https://github.com/virtualeconomy/js-v-sdk",
"main": "./dist/index.js",
"engines": {
"node": ">=16",
"yarn": ">=1.22.11"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"axlsign": "^1.0.0",
"babel-polyfill": "^6.26.0",
"base-58": "0.0.1",
"bignumber.js": "^7.2.1",
"blake2b": "^2.1.3",
"crypto-js": "^3.1.9-1",
"identicon.js": "^2.3.2",
"js-sha3": "^0.8.0",
"node-fetch": "^2.6.0",
"qrcode": "^1.4.1",
"request": "^2.88.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"fancy-log": "^1.3.3",
"flow-bin": "^0.92.1",
"mocha": "^6.2.0",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3"
},
"scripts": {
"test_all": "npm run build && mocha ./test/test_token.js ./test/test_account.js ./test/test_blockchain.js ./test/test_tx.js ./test/test_system_contract.js ./test/test_payment_channel_contract.js ./test/test_lock_contract.js",
"test_token": "npm run build && mocha ./test/test_token.js",
"test_account": "npm run build && mocha ./test/test_account.js",
"test_blockchain": "npm run build && mocha ./test/test_blockchain.js",
"test_tx": "npm run build && mocha ./test/test_tx.js",
"test_system_contract": "npm run build && mocha ./test/test_system_contract.js",
"test_payment_channel_contract": "npm run build && mocha ./test/test_payment_channel_contract.js",
"test_lock_contract": "npm run build && mocha ./test/test_lock_contract.js",
"test_nft_contract": "npm run build && mocha ./test/test_nft_contract.js",
"clean": "rm -rf dist libs",
"pre-build": "babel --source-maps -d libs src test",
"build": "npm run pre-build && cross-env BABEL_ENV=production babel-node build/bundle.js esm,cjs"
},
"engines": {
"node": ">=12",
"zlib": "^1.2.8",
"yarn": ">=0.19.0"
}
}