mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
54 lines
946 B
JSON
54 lines
946 B
JSON
{
|
|
"name": "@restart/context",
|
|
"version": "2.1.4",
|
|
"main": "index.js",
|
|
"module": "es/index.js",
|
|
"types": "index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/react-restart/context"
|
|
},
|
|
"author": "4Catalyzer",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
],
|
|
"*.{json,css,md}": [
|
|
"prettier --write --ignore-path .eslintignore",
|
|
"git add"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"printWidth": 79,
|
|
"singleQuote": true,
|
|
"trailingComma": "all"
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"<rootDir>/test"
|
|
],
|
|
"setupFiles": [
|
|
"<rootDir>/test/index.js"
|
|
]
|
|
},
|
|
"release": {
|
|
"extends": [
|
|
"@4c/semantic-release-config"
|
|
],
|
|
"pkgRoot": "lib"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=16.3.2"
|
|
}
|
|
}
|