-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "@edge/xe-utils",
"version": "1.11.1",
"description": "Utility library for XE blockchain API",
"main": "dist/lib/index.js",
"author": "Edge Network <core@edge.network>",
"contributors": [
"Aneurin \"Anny\" Barker Snook <aneurin@edge.network>"
],
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts lib",
"lint:fix": "eslint --fix --ext .ts lib",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' mocha -r ts-node/register 'tests/**/*.ts'"
},
"devDependencies": {
"@edge/eslint-config-typescript": "^0.1.1",
"@types/chai": "^4.3.11",
"@types/crypto-js": "^4.0.2",
"@types/elliptic": "^6.4.13",
"@types/mocha": "^10.0.6",
"@types/superagent": "^4.1.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.4.1",
"eslint": "^7.32.0",
"mocha": "^9.2.2",
"ts-node": "^10.9.2",
"typescript": "^4.4.3"
},
"dependencies": {
"crypto-js": "^4.0.0",
"elliptic": "^6.5.0",
"js-sha3": "^0.8.0",
"superagent": "^6.1.0 || ^7.0.0"
}
}