-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.36 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
{
"name": "echojs-lib",
"version": "1.13.6",
"description": "Pure JavaScript ECHO library for node.js",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"scripts": {
"pretest": "npm run build && babel-node ./test/preparation/preparation.js",
"test": "mocha --require @babel/register --require @babel/polyfill --exit",
"test-api": "mocha --require @babel/register --require @babel/polyfill test/api.test.js",
"test-subscriber": "mocha --require @babel/register --require @babel/polyfill test/subscriber.test.js",
"test-contract": "mocha --require @babel/register --require @babel/polyfill test/contract.test.js",
"build": "npx babel src --out-dir dist",
"check-typing": "npx tsc",
"lint": "eslint .",
"lint:debug": "npm run lint -- --debug",
"lint:fix": "npm run lint -- --fix"
},
"homepage": "https://github.com/echoprotocol/echojs-lib",
"repository": {
"type": "git",
"url": "https://github.com/echoprotocol/echojs-lib.git"
},
"bugs": {
"url": "https://github.com/echoprotocol/echojs-lib/issues"
},
"author": {
"name": "PixelPlex, Inc.",
"email": "info@pixelplex.io",
"url": "https://pixelplex.io"
},
"license": "MIT",
"dependencies": {
"@babel/runtime-corejs3": "^7.6.0",
"@types/crypto-js": "^3.1.43",
"@types/node": "^12.0.10",
"assert": "^1.4.1",
"axios": "^0.22.0",
"bigi": "^1.4.2",
"bignumber.js": "^8.0.1",
"bs58": "^4.0.1",
"buffer": "^5.2.1",
"bytebuffer": "^5.0.1",
"comprehension": "^1.1.2",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"crypto-js": "^3.1.9-1",
"deep-equal": "^1.0.1",
"ecurve": "^1.0.6",
"ed25519.js": "^1.3.0",
"events": "^3.0.0",
"immutable": "^3.8.1",
"isomorphic-ws": "^4.0.1",
"js-sha3": "^0.8.0",
"lodash": "^4.17.21",
"ws": "^7.5.5"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.2.2",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@types/bytebuffer": "^5.0.40",
"audit-ci": "^4.1.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "7.13.0",
"fs-extra": "^7.0.1",
"husky": "^2.7.0",
"mocha": "^9.1.2",
"redux": "^4.0.1",
"typescript": "^3.5.3"
}
}