-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.66 KB
/
package.json
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
{
"name": "plonetheme.tokyo",
"version": "2.0.0",
"description": "An add-on for Plone",
"main": "index.js",
"author": "Stefan Antonelli",
"license": "MIT",
"homepage": "https://icons.getbootstrap.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/collective/plonetheme.tokyo.git"
},
"bugs": {
"url": "https://github.com/collective/plonetheme.tokyo/issues"
},
"keywords": [
"plone",
"theme"
],
"dependencies": {
"bootstrap": "^5.3.0-alpha1",
"bootstrap-icons": "^1.10.3"
},
"scripts": {
"css": "npm-run-all css-compile-main css-prefix-main css-minify-main",
"css-lint": "stylelint \"src/plonetheme/tokyo/theme/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"css-compile-main": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 src/plonetheme/tokyo/theme/scss/ -o src/plonetheme/tokyo/theme/css/",
"css-minify-main": "cleancss --format breakWith=lf --source-map --source-map-inline-sources --output src/plonetheme/tokyo/theme/css/tokyo.min.css src/plonetheme/tokyo/theme/css/tokyo.css",
"css-prefix-main": "postcss --config build/postcss.config.js --replace \"src/plonetheme/tokyo/theme/css/*.css\" \"!src/plonetheme/tokyo/theme/css/*.min.css\"",
"lint": "npm-run-all --parallel css-lint",
"dist": "npm-run-all --parallel css",
"watch": "nodemon --watch src/plonetheme/tokyo/theme/scss/ --ext scss --exec \"npm run css\""
},
"devDependencies": {
"clean-css-cli": "^5.6.2",
"node-sass": "^8.0.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"stylelint": "^14.16.1"
}
}