forked from ltonetwork/lto-api.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "@ltonetwork/lto",
"version": "0.0.0",
"description": "LTO library to generate key pairs and sign events",
"scripts": {
"clean": "rm -rf ./lib ./dist",
"build": "webpack --mode production",
"compile": "tsc -p ./tsconfig.json",
"test": "mocha --require ts-node/register 'test/**/*.spec.ts'",
"lint": "eslint src --ext .ts,.tsx",
"lint-fix": "eslint src --ext .ts,.tsx --fix"
},
"author": "LTO Network",
"license": "MIT",
"main": "lib/bundle.js",
"files": [
"lib",
"interfaces.d.ts"
],
"dependencies": {
"axios": "^0.25.0",
"bignumber.js": "^4.1.0",
"blakejs": "^1.1.0",
"crypto-js": "^4.1.1",
"ethereum-cryptography": "^0.1.3",
"js-sha256": "^0.9.0",
"jsrsasign": "^10.5.1",
"node-fetch": "^2.2.0",
"parse-json-bignumber": "0.0.2",
"ts-api-validator": "^2.1.0",
"ts-utils": "^6.0.4",
"tweetnacl": "^1.0.3",
"webpack": "^5.70.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/crypto-js": "^4.1.1",
"@types/mocha": "^2.2.43",
"@types/node": "^15.14.9",
"@types/sinon": "^4.3.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"chai": "^4.3.4",
"eslint": "^8.5.0",
"mocha": "^9.1.3",
"requirejs": "^2.3.5",
"sinon": "^4.5.0",
"ts-loader": "^9.2.8",
"ts-node": "^5.0.1",
"tslib": "^2.3.1",
"typescript": "^3.9.9",
"webpack-cli": "^4.9.2"
}
}