This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.71 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
{
"name": "symbol-sdk-typescript",
"version": "0.0.1",
"description": "symbol typescript sdk",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npx shx rm -rf dist/ && ttsc",
"watch": "tsc -b -w",
"doc": "typedoc --out \"ts-docs/$(npm run version --silent)\" src",
"test": "env VECTOR_LIMIT=20 mocha -r ts-node/register -r tsconfig-paths/register ./test/**/*.spec.ts ./test/**/*.vector.ts --ui bdd --timeout 120000",
"test:vector": " mocha -r ts-node/register -r tsconfig-paths/register ./test/**/*.vector.ts --ui bdd --timeout 500000",
"test:cov": "nyc --reporter=lcov --reporter=text-summary npm t",
"test:coveralls": "npm run test:cov | coveralls",
"coveralls-report": "cat ./coverage/lcov.info | coveralls",
"prettier": "prettier --write ./src ./test",
"lint": "eslint --cache src/ test/ --ext .ts",
"lint:fix": "eslint src/ test/ --ext .ts --fix",
"style:fix": "npm run prettier && npm run lint:fix",
"version": "echo $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/symbol/sdk-typescript.git"
},
"author": "stevenLiu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/symbol/sdk-typescript/issues"
},
"homepage": "https://github.com/symbol/sdk-typescript#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/jsonstream": "^0.8.30",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.6",
"@types/ripemd160": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"@zerollup/ts-transform-paths": "^1.7.18",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsdoc": "^0.2.14",
"JSONStream": "^1.3.5",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^2.3.3",
"shx": "^0.3.3",
"ts-mockito": "^2.6.1",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"ttypescript": "^1.5.12",
"typedoc": "^0.21.4",
"typescript": "^4.3.5"
},
"dependencies": {
"@js-joda/core": "^3.2.0",
"bigint-buffer": "^1.1.5",
"catbuffer-typescript": "^1.0.1-alpha-202108062013",
"crypto-js": "^4.1.1",
"futoin-hkdf": "^1.4.2",
"js-sha3": "^0.8.0",
"js-sha512": "^0.8.0",
"ripemd160": "^2.0.2",
"tweetnacl": "^1.0.3",
"utf8": "^3.0.0"
}
}