mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:36:12 +01:00
518bae014e
- Move npm tools and config to default places - Remove now unnecessary config file parameter from npm scripts - editorconfig and eslint config contradict, adapt editorconfig - switch JS indent linting to TYPO3 coding standard of 2 spaces - adapt composer scripts for new npm location
27 lines
777 B
JSON
27 lines
777 B
JSON
{
|
|
"name": "tea",
|
|
"description": "npm helper tools used for the extension",
|
|
"repository": {
|
|
"url": "https://github.com/TYPO3-Documentation/tea.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"version": "1.0.0",
|
|
"license": "ISC",
|
|
"scripts": {
|
|
"lint:js": "eslint 'Resources/Public/**/*.js'",
|
|
"lint:js:fix": "eslint 'Resources/Public/**/*.js' --quiet --fix",
|
|
"lint:style": "stylelint Resources/Public/**/*.css",
|
|
"lint:style:fix": "stylelint Resources/Public/**/*.css --fix"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"prettier": "^2.0.5",
|
|
"stylelint": "^13",
|
|
"stylelint-config-recommended": "^3.0.0",
|
|
"stylelint-no-browser-hacks": "^1.2.1"
|
|
}
|
|
}
|