@ekoopensource/sdk
Version:
Ekoopensource sdk to connect to the ekoopnsource grids and services
82 lines (81 loc) • 2.01 kB
JSON
{
"name": "@ekoopensource/sdk",
"version": "1.0.2",
"description": "Ekoopensource sdk to connect to the ekoopnsource grids and services",
"main": "./build/index.js",
"homepage": "https://github.com/ekoopenbuild/eos-sdk-js",
"directories": {
"test": "tests"
},
"bugs": {
"url": "https://github.com/ekoopenbuild/eos-sdk-js/issues"
},
"scripts": {
"test": "npm run build && jest",
"build": "tsc -p .",
"prepare": "npm run -s build",
"precommit": "pretty-quick --staged",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "TomideAina (https://github.com/tomideo1)",
"license": "MIT",
"keywords": [
"Ekoopensource",
"Sdk"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ekoopenbuild/eos-sdk-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.161",
"@types/object-assign-deep": "^0.4.0",
"jest": "^26.5.0",
"prettier": "^1.19.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./preprocessor.js"
},
"testEnvironment": "node",
"testMatch": [
"**/tests/*.(ts|tsx|js)"
],
"timers": "fake"
},
"dependencies": {
"axios": "^0.19.0",
"faker": "^5.1.0",
"lodash": "^4.17.20",
"object-assign-deep": "^0.3.1",
"husky": "^0.14.3",
"pretty-quick": "^1.11.1"
},
"prettier": {
"tabWidth": 2,
"printWidth": 200,
"semi": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}