forked from telosnetwork/telosevm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.53 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
{
"name": "@telosnetwork/telosevm-js",
"version": "0.2.8",
"description": "Telos EVM JS SDK",
"keywords": [],
"main": "lib/cjs/telosevm-js.js",
"module": "lib/esm/telosevm-js.js",
"engines": {
"node": ">=14"
},
"files": [
"lib/",
"wrapper.mjs"
],
"author": "jafri <syed.jafri2@ucalgary.ca>",
"contributors": [
"eugene <eugene@eostribe.io> (https://cryptotribe.io)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/telosnetwork/telosevm-js"
},
"license": "MIT",
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rm -rf dist",
"prepublish": "yarn prebuild && yarn build",
"build": "npm run build:all",
"build:esm": "tsc",
"build:cjs": "tsc --p tsconfig.node.json",
"build:webpack": "webpack",
"build:all": "npm run build:cjs && npm run build:esm && npm run build:webpack",
"start": "rollup -c rollup.config.ts -w",
"test-off": "jest --coverage --runInBand --testPathIgnorePatterns debugging",
"debug": "jest --coverage --runInBand debugging",
"test:watch": "jest --coverage --runInBand --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"compile": "ts-node src/eth-contracts/compile.ts",
"docs": "documentation readme dist/lib/telosevm-js.js -s API",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"precommit": "lint-staged",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"@types/elliptic": "^6.4.12",
"@types/ethereumjs-abi": "^0.6.3",
"@types/jest": "^23.3.14",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.4",
"@types/text-encoding": "0.0.35",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"@ethereumjs/common": "^2.3.1",
"@ethereumjs/tx": "^3.2.1",
"assert": "^2.0.0",
"axios": "^0.21.1",
"bn.js": "^5.1.1",
"buffer": "^6.0.3",
"eosjs": "^22.1.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^6.2.0",
"node-fetch": "^2.6.0",
"stream": "^0.0.2",
"text-encoding": "^0.7.0"
},
"bugs": {
"url": "https://github.com/telosnetwork/telosevm-js/issues"
},
"homepage": "https://github.com/telosnetwork/telosevm-js#readme"
}