-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
122 lines (122 loc) · 4.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "symbol-sdk",
"version": "2.0.5",
"description": "Reactive symbol sdk for typescript and javascript",
"scripts": {
"pretest": "npm run build",
"prepack": "npm run build",
"test": "mocha --ui bdd --recursive ./dist/test --timeout 90000 --unhandled-rejections=strict ",
"test:e2e": "npm run build && mocha --ui bdd --recursive ./dist/e2e --timeout 90000 --unhandled-rejections=strict",
"e2e": "npm run bootstrap-stop && npm run bootstrap-start-detached && npm run test:e2e && npm run bootstrap-stop",
"test:all": "mocha --ui bdd --recursive ./dist/ --timeout 90000 --unhandled-rejections=strict",
"build": "shx rm -rf dist/ && tsc",
"watch": "tsc --watch",
"test:cov": "nyc --reporter=lcov --reporter=text-summary npm t",
"test:coveralls": "npm run test:cov | coveralls",
"coveralls-report": "cat ./coverage/lcov.info | coveralls",
"version": "echo $npm_package_version",
"prettier": "prettier --write ./src ./test ./e2e",
"lint": "eslint --cache src/ test/ e2e/ --ext .ts",
"lint:fix": "eslint src/ test/ e2e/ --ext .ts --fix",
"style:fix": "npm run create-index-files && npm run prettier && npm run lint:fix",
"create-index-files": "cti create ./src -b -n",
"doc": "typedoc --out \"ts-docs/$(npm run version --silent)\" src",
"bootstrap-clean": "symbol-bootstrap clean -t target/bootstrap-test",
"bootstrap-start-detached": "symbol-bootstrap start -r -c ./e2e/e2e-preset.yml -t target/bootstrap-test --timeout 120000 -d --healthCheck",
"bootstrap-start": "symbol-bootstrap start -r -c ./e2e/e2e-preset.yml --timeout 120000 -t target/bootstrap-test",
"bootstrap-upgrade": "symbol-bootstrap compose -r -t target/bootstrap-test",
"bootstrap-stop": "symbol-bootstrap stop -t target/bootstrap-test",
"bootstrap-run": "symbol-bootstrap run -t target/bootstrap-test",
"bootstrap-compose": "symbol-bootstrap compose -t target/bootstrap-test",
"bootstrap-config": "symbol-bootstrap config -p bootstrap -c ./e2e/e2e-preset.yml -t target/bootstrap-test"
},
"pre-commit": [
"lint"
],
"contributors": [
{
"name": "Steven Liu",
"email": "[email protected]"
},
{
"name": "Fernando Boucquez",
"email": "[email protected]"
},
{
"name": "Aleix",
"email": "[email protected]"
},
{
"name": "Guillem",
"email": "[email protected]"
}
],
"bugs": "https://github.com/nemtech/symbol-sdk-typescript-javascript/issues",
"repository": {
"type": "git",
"url": "https://github.com/nemtech/symbol-sdk-typescript-javascript.git"
},
"license": "Apache-2.0",
"homepage": "https://github.com/nemtech/symbol-sdk-typescript-javascript#readme",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=12.22.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/lodash": "^4.14.161",
"@types/long": "^4.0.1",
"@types/mocha": "^9.0.0",
"@types/ripemd160": "^2.0.0",
"@types/utf8": "^2.1.6",
"@types/ws": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"assert": "^1.5.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"create-ts-index": "^1.13.6",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"node-forge": ">=0.10.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^1.1.1",
"secure-random": "^1.1.2",
"shx": "^0.3.2",
"symbol-bootstrap": "^1.0.9",
"ts-mockito": "^2.6.1",
"ts-node": "^8.10.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.4",
"typescript-require": "^0.2.10"
},
"dependencies": {
"@js-joda/core": "^3.2.0",
"catbuffer-typescript": "^1.0.2",
"crypto-js": "^4.0.0",
"futoin-hkdf": "^1.3.2",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"js-sha512": "^0.8.0",
"long": "^4.0.0",
"merkletreejs": "^0.2.9",
"node-fetch": "^2.6.0",
"ripemd160": "^2.0.2",
"rxjs": "^7.4.0",
"symbol-openapi-typescript-fetch-client": "^1.0.3",
"tweetnacl": "^1.0.3",
"utf8": "^2.1.2",
"ws": "^7.3.1"
},
"nyc": {
"exclude-after-remap": false,
"exclude": [
"**/*.spec.js"
]
}
}