UNPKG

eal-sdk

Version:
109 lines (108 loc) 3.07 kB
{ "name": "eal-sdk", "version": "0.0.1", "description": "EAL SDK for Node.JS and the Browser", "license": "Apache-2.0", "homepage": "https://github.com/Coiin-Blockchain/coiin-eal-sdk-javascript#readme", "repository": { "type": "git", "url": "git+https://github.com/Coiin-Blockchain/coiin-eal-sdk-javascript.git" }, "keywords": [ "coiin", "eal", "sdk" ], "bugs": { "url": "https://github.com/Coiin-Blockchain/coiin-eal-sdk-javascript/issues" }, "publishConfig": { "@Coiin-Blockchain:registry": "https://npm.pkg.github.com" }, "author": "Coiin", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/types/index.d.ts", "engines": { "node": ">=10.13.0" }, "scripts": { "build": "rm -rf dist/ && tsc", "lint": "eslint --ext .ts --format unix src/ && prettier --check src 'src/**/*.ts'", "format": "prettier --write 'src/**/*.ts'", "docs": "typedoc ./src --exclude '**/*.spec.ts' --mode modules --target es5 --mode file --theme default --out docs --excludeExternals --gaSite 'eal-sdk-node' --hideGenerator", "clean": "rm -rf ./docs/ ./dist/ ./coverage/ ./.nyc_output/", "test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha -r ts-node/register 'src/**/*.spec.ts' --exit", "test:built": "NODE_ENV=test mocha 'dist/**/*.spec.js' --exit", "test:ci": "yarn lint && yarn build && yarn docs && yarn test" }, "nyc": { "extension": [ ".ts" ], "include": [ "src/*" ], "all": true }, "prettier": { "tabWidth": 2, "semi": true, "singleQuote": true, "printWidth": 180 }, "eslintConfig": { "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "prettier", "prettier/@typescript-eslint" ], "env": { "browser": true, "node": true }, "parserOptions": { "project": "./tsconfig.json" }, "rules": { "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/camelcase": "off", "require-atomic-updates": "off", "max-len": "off" } }, "dependencies": { "ini": "^1.3.5", "node-fetch": "^2.6.0", "tslib": "^1.11.1" }, "devDependencies": { "@types/chai": "^4.2.11", "@types/ini": "^1.3.30", "@types/mocha": "^7.0.2", "@types/node": "^12.12.31", "@types/node-fetch": "^2.5.5", "@types/sinon": "^7.5.2", "@types/sinon-chai": "^3.2.3", "@typescript-eslint/eslint-plugin": "^2.34.0", "@typescript-eslint/parser": "^2.34.0", "chai": "^4.2.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.10.1", "mocha": "^7.1.1", "nyc": "^15.0.0", "prettier": "^2.0.2", "sinon": "^9.0.1", "sinon-chai": "^3.5.0", "ts-node": "^8.8.1", "typedoc": "^0.17.3", "typescript": "^3.9.10" } }