diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
commit | ae187b6d75c8079da0be1dc288613bad8466fe61 (patch) | |
tree | 5ea0d34185a2270f29ffaa65e1f5258028d7d5d0 /desktop/node_modules/sumchecker/package.json | |
download | mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.gz mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.bz2 mist-ae187b6d75c8079da0be1dc288613bad8466fe61.zip |
Initial commit
Diffstat (limited to 'desktop/node_modules/sumchecker/package.json')
-rw-r--r-- | desktop/node_modules/sumchecker/package.json | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/desktop/node_modules/sumchecker/package.json b/desktop/node_modules/sumchecker/package.json new file mode 100644 index 0000000..737a53f --- /dev/null +++ b/desktop/node_modules/sumchecker/package.json @@ -0,0 +1,79 @@ +{ + "name": "sumchecker", + "version": "3.0.1", + "author": "Mark Lee", + "license": "Apache-2.0", + "description": "Checksum validator", + "main": "index.js", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/malept/sumchecker.git" + }, + "keywords": [ + "checksum", + "hash" + ], + "bugs": { + "url": "https://github.com/malept/sumchecker/issues" + }, + "homepage": "https://github.com/malept/sumchecker#readme", + "engines": { + "node": ">= 8.0" + }, + "devDependencies": { + "ava": "^2.2.0", + "codecov": "^3.3.0", + "eslint": "^6.1.0", + "eslint-config-standard": "^14.0.0", + "eslint-plugin-ava": "^9.0.0", + "eslint-plugin-import": "^2.18.2", + "eslint-plugin-node": "^10.0.0", + "eslint-plugin-promise": "^4.0.1", + "eslint-plugin-standard": "^4.0.0", + "nyc": "^14.0.0", + "tsd": "^0.11.0" + }, + "dependencies": { + "debug": "^4.1.0" + }, + "scripts": { + "ava": "ava test/index.js", + "codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov", + "coverage": "nyc ava test/index.js", + "lint": "eslint .", + "test": "npm run lint && npm run ava && npm run tsd", + "tsd": "tsd" + }, + "ava": { + "babel": false, + "compileEnhancements": false + }, + "eslintConfig": { + "extends": [ + "eslint:recommended", + "plugin:ava/recommended", + "plugin:import/errors", + "plugin:import/warnings", + "plugin:node/recommended", + "plugin:promise/recommended", + "standard" + ], + "plugins": [ + "ava" + ], + "rules": { + "node/no-unpublished-require": [ + "error", + { + "allowModules": [ + "ava" + ] + } + ], + "strict": [ + "error" + ] + } + } +} |