Skip to content

Commit 73bb83f

Browse files
committed
add IDE linting
1 parent f6bc421 commit 73bb83f

File tree

1 file changed

+49
-43
lines changed

1 file changed

+49
-43
lines changed

package.json

Lines changed: 49 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,51 @@
11
{
2-
"name": "@hapi/vision",
3-
"description": "Templates rendering plugin support for hapi.js",
4-
"version": "6.1.0",
5-
"repository": "git://github.com/hapijs/vision",
6-
"main": "lib/index.js",
7-
"files": [
8-
"lib"
9-
],
10-
"keywords": [
11-
"view",
12-
"render",
13-
"template",
14-
"hapi"
15-
],
16-
"dependencies": {
17-
"@hapi/boom": "9.x.x",
18-
"@hapi/bounce": "2.x.x",
19-
"@hapi/hoek": "9.x.x",
20-
"@hapi/validate": "1.x.x"
21-
},
22-
"devDependencies": {
23-
"@hapi/code": "8.x.x",
24-
"@hapi/hapi": "20.x.x",
25-
"@hapi/lab": "24.x.x",
26-
"babel-core": "6.x.x",
27-
"babel-plugin-transform-react-jsx": "6.x.x",
28-
"coveralls": "3.x.x",
29-
"ejs": "^3.1.3",
30-
"handlebars": "^4.5.3",
31-
"hapi-react-views": "10.x.x",
32-
"marko": "4.x.x",
33-
"mustache": "^4.0.1",
34-
"nunjucks": "3.x.x",
35-
"pug": "3.x.x",
36-
"react": "16.x.x",
37-
"react-dom": "16.x.x",
38-
"twig": "1.x.x"
39-
},
40-
"scripts": {
41-
"test": "lab -a @hapi/code -t 100 -L -I __core-js_shared__ -m 5000",
42-
"test-cov-html": "lab -a @hapi/code -r html -o coverage.html"
43-
},
44-
"license": "BSD-3-Clause"
2+
"name": "@hapi/vision",
3+
"description": "Templates rendering plugin support for hapi.js",
4+
"version": "6.1.0",
5+
"repository": "git://github.com/hapijs/vision",
6+
"main": "lib/index.js",
7+
"files": [
8+
"lib"
9+
],
10+
"keywords": [
11+
"view",
12+
"render",
13+
"template",
14+
"hapi"
15+
],
16+
"eslintConfig": {
17+
"extends": [
18+
"plugin:@hapi/module"
19+
]
20+
},
21+
"dependencies": {
22+
"@hapi/boom": "9.x.x",
23+
"@hapi/bounce": "2.x.x",
24+
"@hapi/hoek": "9.x.x",
25+
"@hapi/validate": "1.x.x"
26+
},
27+
"devDependencies": {
28+
"@hapi/code": "8.x.x",
29+
"@hapi/eslint-plugin": "*",
30+
"@hapi/hapi": "20.x.x",
31+
"@hapi/lab": "24.x.x",
32+
"babel-core": "6.x.x",
33+
"babel-plugin-transform-react-jsx": "6.x.x",
34+
"coveralls": "3.x.x",
35+
"ejs": "^3.1.3",
36+
"handlebars": "^4.5.3",
37+
"hapi-react-views": "10.x.x",
38+
"marko": "4.x.x",
39+
"mustache": "^4.0.1",
40+
"nunjucks": "3.x.x",
41+
"pug": "3.x.x",
42+
"react": "16.x.x",
43+
"react-dom": "16.x.x",
44+
"twig": "1.x.x"
45+
},
46+
"scripts": {
47+
"test": "lab -a @hapi/code -t 100 -L -I __core-js_shared__ -m 5000",
48+
"test-cov-html": "lab -a @hapi/code -r html -o coverage.html"
49+
},
50+
"license": "BSD-3-Clause"
4551
}

0 commit comments

Comments
 (0)