-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "@maticnetwork/maticjs-staking",
"version": "1.1.0",
"description": "Library for interacting with polygon staking.",
"main": "dist/npm.export.js",
"types": "dist/ts/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"link:lib": "npm link @maticnetwork/maticjs",
"build:link": "webpack && npm link",
"build:dev": "webpack",
"build:prod": "webpack --env build",
"deploy": "npm run clean && npm run build:prod && npm run build:dev",
"prepublishOnly": "npm run deploy",
"lint": "tslint src/**/*.ts",
"lint:fix": "tslint src/**/*.ts --fix",
"debug": "webpack && cd test && npm run link:lib:debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maticnetwork/maticjs-staking.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/maticnetwork/maticjs-staking/issues"
},
"homepage": "https://github.com/maticnetwork/maticjs-staking#readme",
"peerDependencies": {
"@maticnetwork/maticjs": "^3.9.1"
},
"devDependencies": {
"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"
}
}