Updated package.json and added jshint options
{ | ||
"name": "Morceaux choisis de géométrie", | ||
"version": "2.0.0", | ||
"description": "", | ||
"main": "src/index.js", | ||
"private": false, | ||
"scripts": { | ||
"test": "webpack --config webpack.test.config; mocha build/test.js", | ||
"coverage": "webpack --config webpack.test.config; nyc mocha build/test.js", | ||
... | ... | @@ -10,5 +15,12 @@ |
"nyc": "^15.1.0", | ||
"webpack": "^5.48.0", | ||
"webpack-cli": "^4.7.2" | ||
}, | ||
"jshintConfig": { | ||
"curly": true, | ||
"eqeqeq": true, | ||
"esversion": 12, | ||
"freeze": true, | ||
"expr": true | ||
} | ||
} |
Please register or sign in to comment