forked from TYPO3/TYPO3.Icons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@typo3/icons",
"description": "SVG icons for the TYPO3 CMS backend",
"version": "5.0.2",
"keywords": [
"TYPO3",
"Icons"
],
"homepage": "http://typo3.github.io/TYPO3.Icons/",
"author": "The TYPO3.Icons Authors (https://github.com/TYPO3/TYPO3.Icons/graphs/contributors)",
"contributors": [
{
"name": "TYPO3 CMS Core Team",
"url": "https://forge.typo3.org/projects/typo3cms-core"
},
{
"name": "The TYPO3 Community",
"url": "https://typo3.org/community/"
}
],
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/TYPO3/TYPO3.Icons.git"
},
"bugs": {
"url": "https://github.com/TYPO3/TYPO3.Icons/issues"
},
"license": "MIT",
"devDependencies": {
"@stylistic/stylelint-plugin": "^4.0.0",
"deepmerge": "^4.3.1",
"del": "^8.0.1",
"gulp": "^5.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-rename": "^2.1.0",
"gulp-sass": "^6.0.1",
"gulp-svg-sprite": "^2.0.3",
"gulp-svgmin": "^4.1.0",
"gulp-twig": "^1.2.0",
"http-server": "^14.1.1",
"js-yaml": "^4.1.1",
"postcss-scss": "^4.0.9",
"sass": "^1.97.2",
"stylelint": "^16.26.1",
"stylelint-order": "^7.0.1",
"stylelint-scss": "^6.14.0"
},
"sass": "dist/icons.scss",
"style": "dist/icons.css",
"scripts": {
"build": "npm run stylelint && npm run icons-build && npm run version-build && npm run site-build",
"site-serve": "http-server -c-1 ./_site",
"site-refresh": "gulp icons && gulp site",
"site-build": "gulp site",
"icons-build": "gulp icons",
"version-build": "gulp version",
"stylelint": "stylelint assets/scss/*",
"dev": "gulp dev",
"watch": "gulp watch",
"preversion": "npm run stylelint",
"version": "gulp changelog-file && git add CHANGELOG.md"
}
}