-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.34 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.34 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
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
{
"name": "@open-rights-exchange/chain-js-plugin-eos",
"version": "4.10.0",
"description": "Chain-js plug-in for EOS networks.",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"_module": "dist/mjs/src/index.js",
"_types": "dist/mjs/src/index.d.ts",
"sideEffects": false,
"scripts": {
"webpack": "use_local_chainjs_code_NOT_npm=false webpack --mode=production --node-env=production --config ./webpack.config.js && npm run copyToChainJS",
"webpack:local": "use_local_chainjs_code_NOT_npm=true webpack --mode=development --config ./webpack.config.js && npm run copyToChainJS",
"copyToChainJS": "cp dist/chain-js-plugin-eos-umd.js ../chain-js/dist/chain-js-plugin-eos-umd.js",
"_build": "rm -rf dist/* && tsc --build tsconfig.json",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest --coverage --maxWorkers=1",
"test:watch": "jest --watch",
"localpublish": "zalc publish && zalc push",
"build": "rm -fr dist/* && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && ./fixup",
"build:local": "rm -fr dist/* && tsc -p tsconfig-mjs-local.json && tsc -p tsconfig-cjs-local.json && ./fixup",
"example": "TS_NODE_PROJECT=tsconfig-cjs.json node -r ts-node/register/transpile-only --nolazy",
"example:local": "TS_NODE_PROJECT=tsconfig-cjs-local.json node -r ts-node/register/transpile-only -r tsconfig-paths/register --nolazy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-rights-exchange/chainjs-plugin-eos.git"
},
"author": "AIKON",
"bugs": {
"url": "https://github.com/open-rights-exchange/chainjs-plugin-eos/issues"
},
"homepage": "https://github.com/open-rights-exchange/chainjs-plugin-eos#readme",
"dependencies": {
"bs58": "^4.0.1",
"dotenv": "^8.6.0",
"eosjs": "^20.0.0",
"eosjs-ecc": "^4.0.7",
"eosjs-keygen": "^1.3.2",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@aikon/network-vcr": "^1.0.3",
"@types/bs58": "^4.0.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.184",
"@types/node-fetch": "^2.5.4",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/experimental-utils": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.3.1",
"jest-fetch-mock": "^3.0.3",
"nock": "^13.2.9",
"path-browserify": "^1.0.1",
"prettier": "^2.6.2",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.8",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"util": "^0.12.4",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"@open-rights-exchange/chain-js": "^4.10.0"
},
"files": [
"dist",
"src"
]
}