forked from chocolatey/choco-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.39 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.39 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
{
"name": "choco-theme",
"version": "2.6.0",
"packageManager": "yarn@4.10.3",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/chocolatey/choco-theme.git"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"cssnano": "^7.1.1",
"postcss": "^8.5.6",
"sass": "^1.90.0",
"stylelint": "^16.24.0",
"stylelint-config-twbs-bootstrap": "^16.1.0"
},
"scripts": {
"audit": "yarn npm audit --all --recursive --no-deprecations",
"build": "yarn build-clean \"$@\" dist && yarn build-js \"$@\" && yarn build-sass \"$@\" && yarn build-partials \"$@\" && yarn build-assets \"$@\" && yarn build-clean \"$@\" temp",
"build-assets": "npx tsx build/build-assets.ts",
"build-clean": "npx tsx build/build-clean.ts",
"build-js": "npx tsx build/build-js.ts",
"build-partials": "npx tsx build/build-partials.ts",
"build-sass": "npx tsx build/build-sass.ts",
"eslint": "npx eslint --max-warnings 0",
"stylelint": "stylelint \"src/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"publish-dry-run": "yarn workspaces foreach --all --no-private npm publish --tolerate-republish --dry-run --access public",
"update-version": "yarn workspaces foreach --since version"
}
}