diff options
author | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 22:54:37 +0300 |
---|---|---|
committer | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 22:54:37 +0300 |
commit | 703e03aba33f234712206769f57717ba7d92d23d (patch) | |
tree | 0041f04ccb75bd5379c764e9fe42249fffe75fc3 /node_modules/sumchecker/package.json | |
parent | ab6e257e6e9d9a483d7e86f220d8b209a2cd7753 (diff) | |
download | FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.gz FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.zst |
Added export_allowed file to make repository visible in cgit
Diffstat (limited to 'node_modules/sumchecker/package.json')
-rw-r--r-- | node_modules/sumchecker/package.json | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/node_modules/sumchecker/package.json b/node_modules/sumchecker/package.json new file mode 100644 index 0000000..989dcbb --- /dev/null +++ b/node_modules/sumchecker/package.json @@ -0,0 +1,53 @@ +{ + "name": "sumchecker", + "version": "2.0.2", + "author": "Mark Lee", + "license": "Apache-2.0", + "description": "Checksum validator", + "main": "index.js", + "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": ">= 4.0" + }, + "devDependencies": { + "codeclimate-test-reporter": "^0.4.0", + "eslint": "^3.3.1", + "eslint-config-standard": "^6.0.0-beta.3", + "eslint-plugin-promise": "^3.3.0", + "eslint-plugin-standard": "^2.0.0", + "intern": "^3.3.1", + "nyc": "^8.1.0" + }, + "dependencies": { + "debug": "^2.2.0" + }, + "scripts": { + "ci": "eslint . && intern-client config=tests/intern suites=tests/index reporters=Lcov reporters=Console && codeclimate-test-reporter < lcov.info", + "test": "eslint . && intern-client config=tests/intern suites=tests/index reporters=Pretty" + }, + "eslintConfig": { + "env": { + "amd": true + }, + "extends": "standard", + "parserOptions": { + "sourceType": "script" + }, + "rules": { + "strict": [ + "error" + ] + } + } +} |