forked from symbol/symbol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.6 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.6 KB
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
{
"name": "symbol-sdk",
"version": "3.0.0",
"type": "module",
"description": "JavaScript SDK for Symbol",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha --full-trace --recursive ./test",
"vectors": "node ./vectors/all.js --vectors $(git rev-parse --show-toplevel)/tests/vectors/${BLOCKCHAIN}/crypto --blockchain ${BLOCKCHAIN}",
"catvectors": "mocha --full-trace ./vectors/catbuffer.js",
"lint:jenkins": "eslint -o lint.sdk.javascript.xml -f junit . || exit 0",
"test:jenkins": "c8 --require mocha --no-clean --reporter=lcov npm run test",
"vectors:jenkins": "c8 --require mocha --no-clean --reporter=lcov npm run vectors",
"catvectors:jenkins": "c8 --require mocha --no-clean --reporter=lcov npm run catvectors",
"bundle": "webpack",
"bundle:clean": "rimraf ./_build"
},
"keywords": [],
"author": "Symbol Contributors <contributors@symbol.dev>",
"license": "MIT",
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"c8": "^7.12.0",
"chai": "^4.3.7",
"crypto-browserify": "^3.12.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"json-bigint": "^1.0.0",
"mocha": "^10.2.0",
"mocha-jenkins-reporter": "^0.4.8",
"process": "^0.11.10",
"rimraf": "^4.1.2",
"stream-browserify": "^3.0.0",
"url": "^0.11.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"yargs": "^17.6.2"
},
"dependencies": {
"@noble/hashes": "^1.2.0",
"bitcore-mnemonic": "^8.25.46",
"ripemd160": "^2.0.2",
"tweetnacl": "^1.0.3"
}
}