-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.07 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.07 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
{
"name": "@quickswap-defi/staking-list",
"version": "1.0.8",
"description": "Official Quickswap default staking list (Syrups, LP farms, Dual farms)",
"main": "build/syrups.json",
"scripts": {
"test": "mocha",
"build": "rimraf build && node src/build.js",
"sync": "node src/sync.js",
"prepublishOnly": "npm test && npm run build"
},
"files": [
"build/*.json"
],
"keywords": [
"quickswap",
"default",
"staking",
"syrup",
"farm",
"list",
"polygon",
"base",
"multichain"
],
"author": "QuickSwap",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/QuickSwap/quickswap-default-stake-list.git"
},
"bugs": {
"url": "https://github.com/QuickSwap/quickswap-default-stake-list/issues"
},
"homepage": "https://quickswap.exchange",
"devDependencies": {
"ajv": "6.12.6",
"chai": "4.5.0",
"mocha": "11.7.2",
"rimraf": "6.0.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
}
}