forked from maticnetwork/matic.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.56 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
82
83
84
85
{
"name": "@maticnetwork/maticjs",
"version": "3.8.2",
"description": "Javascript developer library for interacting with Matic Network",
"main": "dist/npm.export.js",
"types": "dist/ts/index.d.ts",
"browser": "dist/matic.umd.js",
"react-native": "dist/matic.node.js",
"files": [
"lib",
"dist",
"artifacts",
"types"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run build:dev",
"build:link": "npm run build && npm link",
"build:webpack": "npm run lint && webpack --config webpack/webpack.all.config.js",
"build:pack": "npm run clean && npm run build:dev && npm pack",
"build:dev": "cross-env NODE_ENV=development npm run build:webpack",
"build:prod": "cross-env NODE_ENV=production npm run build:webpack",
"deploy": "npm run clean && npm run build:dev && npm run build:prod",
"prepublishOnly": "npm run deploy",
"lint": "tslint src/**/*.ts",
"lint:fix": "tslint src/**/*.ts --fix",
"build:test": "npm run build:pack && npm run test",
"test": "cd test && npm run install:lib:test",
"debug": "npm run build:pack && cd test && npm run install:lib:debug",
"testrpc": "ganache-cli --mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' --gasLimit 13000000",
"install:example": "cd examples && npm i ../maticnetwork-maticjs-3.5.0.tgz --no-save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maticnetwork/matic.js.git"
},
"keywords": [
"ethereum",
"web3",
"ethers",
"matic"
],
"author": "Jaynti Kanani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maticnetwork/matic.js/issues"
},
"homepage": "https://github.com/maticnetwork/matic.js#readme",
"dependencies": {
"@ethereumjs/block": "^3.6.2",
"ethereumjs-util": "^7.1.4",
"merkle-patricia-tree": "^4.2.4",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.3",
"husky": "2.4.1",
"lint-staged": "8.2.1",
"rimraf": "^3.0.2",
"smart-banner-webpack-plugin": "^3.0.1",
"ts-loader": "^8.0.0",
"tslint": "^6.1.3",
"typescript": "^4.6.3",
"webpack": "^4.43.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^4.2.2"
},
"browserslist": [
"> 1%",
"node 8",
"not dead"
],
"engines": {
"node": ">=8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
}
}