summaryrefslogtreecommitdiff
path: root/node_modules/sumchecker/package.json
diff options
context:
space:
mode:
authorLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 22:54:37 +0300
committerLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 22:54:37 +0300
commit703e03aba33f234712206769f57717ba7d92d23d (patch)
tree0041f04ccb75bd5379c764e9fe42249fffe75fc3 /node_modules/sumchecker/package.json
parentab6e257e6e9d9a483d7e86f220d8b209a2cd7753 (diff)
downloadFlashRunner-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.json53
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"
+ ]
+ }
+ }
+}