-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
74 lines (74 loc) · 3.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": "lamden-js",
"version": "3.8.7",
"description": "A javascript implementaion for creating wallets, submitting transactions and interacting with masternodes on the Lamden Blockchain.",
"main": "dist/cjs/lamden.js",
"types": "src/index.d.ts",
"module": "dist/esm/lamden.js",
"scripts": {
"test": "npm run build && mocha --recursive --timeout 30000 --exit",
"tests": "npm run test",
"test-network": "npm run build && mocha test/network-test.js --timeout 10000",
"test-masternode-api": "npm run build && mocha test/masternode_api-test.js --timeout 30000 --exit",
"test-blockservice-api": "npm run build && mocha test/blockservice_api-test.js --timeout 10000",
"test-transaction-builder": "npm run build && mocha test/transactionBuilder-test.js --timeout 30000 --exit",
"test-transaction-batcher": "npm run build && mocha test/transactionBatcher-test.js --timeout 60000",
"test-wallet": "npm run build && mocha test/wallet-test.js",
"test-encoder": "npm run build && mocha test/encoder-test.js",
"test-keystore": "npm run build && mocha test/keystore-test.js",
"browsers:test-network": "npm run build && mocha test/browsers/network-test.js --timeout 10000",
"browsers:test-masternode-api": "npm run build && mocha test/browsers/masternode_api-test.js --timeout 10000",
"browsers:test-transaction-builder": "npm run build && mocha test/browsers/transactionBuilder-test.js --timeout 10000",
"browsers:test-transaction-batcher": "npm run build && mocha test/browsers/transactionBatcher-test.js --timeout 10000",
"browsers:test-wallet": "npm run build && mocha test/browsers/wallet-test.js --timeout 10000",
"browsers:test-encoder": "npm run build && mocha test/browsers/encoder-test.js --timeout 10000",
"browsers:test-keystore": "npm run build && mocha test/browsers/keystore-test.js --timeout 10000",
"build": "rollup --config",
"doc": "doxdox 'src/js/keystore.js' --layout markdown --output docs/keystore.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lamden/lamden-js.git"
},
"keywords": [
"node",
"npm",
"blockchain",
"lamden"
],
"author": "Jeff Scott",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lamden/lamden-js/issues"
},
"homepage": "https://github.com/Lamden/lamden-js#readme",
"dependencies": {
"assert": "1.4.1",
"bignumber.js": "^9.0.0",
"bip39": "^3.0.4",
"ed25519-hd-key": "^1.2.0",
"node-cryptojs-aes": "^0.4.0",
"node-fetch": "^2.6.1",
"socket.io-client": "^4.6.1",
"tweetnacl": "1.0.1",
"types-validate-assert": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"buffer": "^6.0.3",
"dotenv": "^8.2.0",
"expect.js": "^0.3.1",
"koa": "^2.13.4",
"koa-static": "^5.0.0",
"mocha": "^10.0.0",
"rollup": "^2.60.0",
"rollup-plugin-polyfill-node": "^0.7.0",
"rollup-plugin-terser": "^7.0.2",
"selenium-webdriver": "^3.6.0",
"chromedriver": "^111.0.0"
}
}