Skip to content

Commit

Permalink
Merge pull request #15 from vansergen/dependencies
Browse files Browse the repository at this point in the history
Dependencies
  • Loading branch information
vansergen authored Dec 18, 2019
2 parents f33e594 + 2e6b1ca commit 5727771
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 65 deletions.
105 changes: 54 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 12 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,37 @@
{
"name": "rpc-request",
"version": "3.1.3",
"version": "3.1.4",
"description": "Simple wrapper of the request-promise-native in a class",
"main": "index.js",
"main": "build/index.js",
"type": "commonjs",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vansergen/rpc-request.git"
},
"engines": {
"node": ">=10.16.3"
"node": ">=8.16.2"
},
"scripts": {
"prettier": "prettier -c *.{js,md,ts,json} **/*.{js,md,ts,json}",
"prettier": "prettier -c **/*.{js,md,ts,json}",
"prettier-write": "npm run prettier -- --write",
"build": "tsc",
"lint": "eslint --ext .ts,.js ./",
"lint-fix": "npm run lint -- --fix",
"prepublishOnly": "npm run prettier && npm run lint && npm run build && npm run prettier-write && npm run lint-fix"
"prepublishOnly": "npm run prettier && npm run lint && npm run build && npm run prettier-write && npm run lint-fix",
"postpublish": "rm -fr build"
},
"types": "index.d.ts",
"dependencies": {
"@types/request-promise-native": "^1.0.17",
"request": "^2.88.0",
"request-promise-native": "^1.0.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.6.0",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.7.2",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
"typescript": "^3.7.3"
},
"keywords": [
"rpc",
Expand Down
9 changes: 5 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"compilerOptions": {
"target": "es2019",
"target": "esnext",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"outDir": "./build",
"newLine": "lf",
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node"
"noFallthroughCasesInSwitch": true
}
}

0 comments on commit 5727771

Please sign in to comment.