@theresnotime/ipa-validator
Version:
51 lines (50 loc) • 1.29 kB
JSON
{
"name": "@theresnotime/ipa-validator",
"version": "1.5.4",
"license": "MIT",
"description": "IPA validator",
"repository": "theresnotime/ipa-validator",
"main": "dist/index.js",
"keywords": [
"IPA",
"validator"
],
"jshintConfig": {
"esversion": 8
},
"prettier":{
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120,
"tabWidth": 4,
"semi": true,
"bracketSpacing": true,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"parser": "babel",
"useTabs": false,
"requirePragma": false,
"proseWrap": "preserve",
"endOfLine": "lf",
"overrides": [
{
"files": "*.json",
"options": {
"parser": "json"
}
}
]
},
"devDependencies": {
"@types/jest": "^28.1.7",
"jest": "^28.1.3",
"jshint": "^2.13.5",
"prettier": "^2.7.1"
},
"scripts": {
"test": "npm run prettier && npm run lint && npm run jest",
"jest": "jest --verbose",
"lint": "jshint dist/index.js --verbose --show-non-errors",
"prettier": "prettier -c dist/index.js tests/"
}
}