forked from Equibit/zArchived-bootstrap4-less
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.26 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
{
"name": "@equibit/bootstrap4-less",
"version": "0.0.3",
"description": "Less import of Bootstrap4 Sass",
"main": "dist/bootstrap.less",
"scripts": {
"prepublish": "rm -rf dist; npm run less:root && npm run less:utils && npm run less:mixins && npm run less:rename",
"postpublish": "git push; git push --tags",
"less:root": "./node_modules/.bin/sass2less node_modules/bootstrap/scss/*.scss 'dist/{name}.less'",
"less:utils": "./node_modules/.bin/sass2less node_modules/bootstrap/scss/utilities/*.scss 'dist/utilities/{name}.less'",
"less:mixins": "./node_modules/.bin/sass2less node_modules/bootstrap/scss/mixins/*.scss 'dist/mixins/{name}.less'",
"less:rename": "grep -ilr 'scss' dist/* | xargs -I@ sed -i '' 's/scss/less/g' @;",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Equibit/bootstrap4-less.git"
},
"keywords": [
"bootstrap4",
"less"
],
"author": "Equibit",
"license": "ISC",
"devDependencies": {
"bootstrap": "4.0.0-alpha.6",
"less-plugin-sass2less": "^1.1.0"
}
}