Skip to content

Commit

Permalink
add IDE linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydbenson committed Aug 26, 2021
1 parent 7ff448e commit fcc7ba6
Showing 1 changed file with 29 additions and 23 deletions.
52 changes: 29 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
{
"name": "@hapi/hoek",
"description": "General purpose node utilities",
"version": "9.2.0",
"repository": "git://github.com/hapijs/hoek",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"utilities"
],
"files": [
"lib"
],
"dependencies": {},
"devDependencies": {
"@hapi/code": "8.x.x",
"@hapi/lab": "^24.0.0",
"typescript": "~4.0.2"
},
"scripts": {
"test": "lab -a @hapi/code -t 100 -L -Y",
"test-cov-html": "lab -a @hapi/code -t 100 -L -r html -o coverage.html"
},
"license": "BSD-3-Clause"
"name": "@hapi/hoek",
"description": "General purpose node utilities",
"version": "9.2.0",
"repository": "git://github.com/hapijs/hoek",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"utilities"
],
"files": [
"lib"
],
"eslintConfig": {
"extends": [
"plugin:@hapi/module"
]
},
"dependencies": {},
"devDependencies": {
"@hapi/code": "8.x.x",
"@hapi/eslint-plugin": "*",
"@hapi/lab": "^24.0.0",
"typescript": "~4.0.2"
},
"scripts": {
"test": "lab -a @hapi/code -t 100 -L -Y",
"test-cov-html": "lab -a @hapi/code -t 100 -L -r html -o coverage.html"
},
"license": "BSD-3-Clause"
}

0 comments on commit fcc7ba6

Please sign in to comment.