From 71dd81b9f42322dbfb6f6a049565f4cb8816030d Mon Sep 17 00:00:00 2001 From: Paul Verest Date: Thu, 22 Jul 2021 16:48:31 +0800 Subject: [PATCH] Sort package.json Sort package.json content using `npx sort-package-json` See https://stackoverflow.com/questions/34438465/is-there-a-way-to-alphabetize-package-json-without-installing-a-package --- package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 3e1e085..5db04ac 100644 --- a/package.json +++ b/package.json @@ -2,21 +2,22 @@ "name": "harvest", "version": "1.0.0", "description": "", - "main": "null", - "scripts": { - "test": "npx truffle test", - "test-cov": "export RUNNING_COVERAGE=True && truffle run coverage --network=development", - "test-mainnet-only": "truffle build && export MAINNET_FORK=True && npx truffle test ./test/mainnet-fork-test-basic.js ./test/mainnet-fork-test-curve-dai.js ./test/mainnet-fork-test-curve-usdc.js ./test/mainnet-fork-test-curve-usdt.js ./test/mainnet-fork-test-snxReward.js", - "test-mainnet-e2e": "truffle build && export MAINNET_E2E=True && npx truffle test ./test/mainnet-e2e.js" + "homepage": "https://github.com/harvest-finance/harvest#readme", + "bugs": { + "url": "https://github.com/harvest-finance/harvest/issues" }, "repository": { "type": "git", "url": "git+https://github.com/harvest-finance/harvest.git" }, - "author": "", "license": "ISC", - "bugs": { - "url": "https://github.com/harvest-finance/harvest/issues" + "author": "", + "main": "null", + "scripts": { + "test": "npx truffle test", + "test-cov": "export RUNNING_COVERAGE=True && truffle run coverage --network=development", + "test-mainnet-only": "truffle build && export MAINNET_FORK=True && npx truffle test ./test/mainnet-fork-test-basic.js ./test/mainnet-fork-test-curve-dai.js ./test/mainnet-fork-test-curve-usdc.js ./test/mainnet-fork-test-curve-usdt.js ./test/mainnet-fork-test-snxReward.js", + "test-mainnet-e2e": "truffle build && export MAINNET_E2E=True && npx truffle test ./test/mainnet-e2e.js" }, "dependencies": { "@openzeppelin/contracts": "^2.5.0", @@ -29,7 +30,6 @@ "truffle": "5.1.31", "truffle-flattener": "^1.4.4" }, - "homepage": "https://github.com/harvest-finance/harvest#readme", "devDependencies": { "@openzeppelin/test-helpers": "^0.5.6" }