nick-offerman
Version:
You know how you always have optional values.
82 lines (81 loc) • 1.88 kB
JSON
{
"name": "nick-offerman",
"version": "0.1.4",
"description": "You know how you always have optional values.",
"keywords": [
"Something",
"Of",
"Nothing",
"Nick",
"Offerman"
],
"author": "Merlin Hughes <merlin@merlin.org>",
"contributors": [
"Conrad Hughes"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/merlinorg/nick-offerman.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint \"src/**/*.ts\"",
"prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"package.json\"",
"test": "jest --config jestconfig.json",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn prettier && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"standard"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"indent": [
"off"
],
"semi": [
"error",
"always"
]
}
}
}