forked from u-ktdi/symbol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.71 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.71 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
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
86
87
{
"name": "symbol-sdk",
"version": "3.2.2",
"type": "module",
"description": "JavaScript SDK for Symbol",
"main": "./src/index.js",
"types": "./ts/src/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"types": "./ts/src/index.d.ts",
"default": "./src/index.js"
},
"./nem": {
"import": "./src/nem/index.js",
"types": "./ts/src/nem/index.d.ts",
"default": "./src/nem/index.js"
},
"./symbol": {
"import": "./src/symbol/index.js",
"types": "./ts/src/symbol/index.d.ts",
"default": "./src/symbol/index.js"
}
},
"scripts": {
"lint": "eslint .",
"test": "mocha --full-trace --recursive ./test",
"vectors": "bash -c '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": "mkdirp ./dist && webpack",
"bundle:clean": "rimraf ./dist ./_build",
"generate-docs": "typedoc --options ./docs/typedoc.json"
},
"keywords": [],
"author": "Symbol Contributors <contributors@symbol.dev>",
"license": "MIT",
"bugs": "https://github.com/symbol/symbol/issues",
"repository": {
"type": "git",
"url": "https://github.com/symbol/symbol/tree/main/sdk/javascript"
},
"homepage": "https://github.com/symbol/symbol/blob/main/sdk/javascript#readme",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/ripemd160": "~2.0.1",
"@types/yargs": "~17.0.26",
"@wasm-tool/wasm-pack-plugin": "~1.7.0",
"assert": "~2.1.0",
"buffer": "~6.0.3",
"c8": "~10.1.2",
"chai": "~5.1.0",
"crypto-browserify": "~3.12.0",
"eslint": "~8.57.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-plugin-jsdoc": "^50.1.0",
"json-bigint": "~1.0.0",
"mkdirp": "~3.0.1",
"mocha": "~10.7.0",
"mocha-jenkins-reporter": "~0.4.8",
"process": "~0.11.10",
"rimraf": "~6.0.1",
"stream-browserify": "~3.0.0",
"typedoc": "^0.26.1",
"typescript": "~5.6.2",
"url": "~0.11.3",
"webpack": "~5.95.0",
"webpack-cli": "~5.1.4",
"yargs": "~17.7.2"
},
"dependencies": {
"@noble/hashes": "~1.5.0",
"bitcore-mnemonic": "~10.3.0",
"ripemd160": "~2.0.2"
},
"files": [
"src/*",
"dist/*",
"ts/src/*"
],
"optionalDependencies": {
"symbol-crypto-wasm-node": "^0.1.1"
}
}