-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.91 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
{
"name": "@maticnetwork/lxlyjs",
"version": "2.2.1",
"description": "Javascript developer library for interacting with Polygon LxLy Bridge",
"main": "dist/lxly.node.js",
"types": "dist/ts/index.d.ts",
"browser": "dist/lxly.umd.js",
"react-native": "dist/lxly.node.js",
"files": [
"lib",
"dist",
"artifacts",
"types"
],
"scripts": {
"clean": "rimraf dist",
"build:link": "webpack && npm link",
"build:dev": "webpack",
"build:prod": "webpack --env build",
"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:link && npm run test",
"test": "cd test && npm run link:lib:test",
"debug": "webpack && cd test && npm run link:lib:debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xpolygon/lxly.js.git"
},
"keywords": [
"ethereum",
"web3",
"ethers",
"matic"
],
"author": "nitinmittal23",
"license": "MIT",
"bugs": {
"url": "https://github.com/0xpolygon/lxly.js/issues"
},
"homepage": "https://github.com/0xpolygon/lxly.js#readme",
"dependencies": {
"@ethereumjs/util": "^9.0.3",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"node-fetch": "^2.7.0",
"stream": "^0.0.2"
},
"devDependencies": {
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/parser": "^7.3.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"ts-loader": "^8.0.0",
"tslint": "^6.1.3",
"typescript": "^4.9.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"yargs": "^17.7.2"
},
"browserslist": [
"> 1%",
"node 8",
"not dead"
],
"engines": {
"node": ">=8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run build:dev"
}
}
}