-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.26 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
{
"name": "symbol-sdk",
"version": "3.0.0",
"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": "nyc --require mocha --no-clean --reporter=lcov npm run test",
"vectors:jenkins": "nyc --require mocha --no-clean --reporter=lcov npm run vectors",
"catvectors:jenkins": "nyc --require mocha --no-clean --reporter=lcov npm run catvectors"
},
"keywords": [],
"author": "Symbol Contributors <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"json-bigint": "^1.0.0",
"mocha": "^9.2.2",
"mocha-jenkins-reporter": "^0.4.7",
"nyc": "^15.1.0",
"yargs": "^17.6.0"
},
"dependencies": {
"bitcore-mnemonic": "^8.25.25",
"js-sha3": "^0.8.0",
"request": "^2.88.2",
"ripemd160": "^2.0.2",
"tweetnacl": "^1.0.3"
}
}