mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 03:56:12 +02:00
tea/package.json
Daniel Siepmann d9347c174c
[TASK] Switch the license in the package.json to GPL V2 (#1325)
TYPO3 Extensions are GPL V2+.
This is already stated in LICENSE and composer.json.
For some reason package.json had a different license, which is now
streamlined.

Resolves: #1305
2024-05-24 22:31:31 +02:00

32 lines
856 B
JSON

{
"name": "tea",
"description": "npm helper tools used for the extension",
"repository": {
"url": "https://github.com/FriendsOfTYPO3/tea.git"
},
"keywords": [],
"type": "module",
"author": "",
"version": "1.0.0",
"license": "GPL-2.0-or-later",
"engines": {
"node": "^18.20.0",
"npm": "^10.5.0"
},
"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": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"install": "^0.13.0",
"prettier": "^3.2.5",
"stylelint": "^16.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-no-browser-hacks": "^1.3.0"
}
}