-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
49 lines (49 loc) · 1.59 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
{
"name": "@maticnetwork/maticjs-ethers",
"version": "1.1.0",
"description": "ethers plugin for matic.js",
"main": "dist/npm.export.js",
"types": "dist/ts/index.d.ts",
"scripts": {
"build": "npm run build:dev",
"build:test": "npm run build:pack && npm run test",
"build:link": "npm run build && npm link",
"build:webpack": "npm run lint && webpack --config webpack/webpack.node.config.js",
"build:pack": "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 build:dev && npm run build:prod",
"prepublishOnly": "npm run deploy",
"lint": "tslint src/**/*.ts",
"lint:fix": "tslint src/**/*.ts --fix",
"debug": "npm run build:pack && cd test && npm run install:lib:debug",
"test": "cd test && npm run install:lib:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maticnetwork/maticjs-ethers.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/maticnetwork/maticjs-ethers/issues"
},
"homepage": "https://github.com/maticnetwork/maticjs-ethers#readme",
"dependencies": {
"ethers": "^5.5.1"
},
"peerDependencies": {
"@maticnetwork/maticjs": "^3.2.5"
},
"devDependencies": {
"@maticnetwork/maticjs": "^3.2.5",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.3",
"ts-loader": "^7.0.1",
"tslint": "^6.1.3",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^4.2.2"
}
}