-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
71 lines (71 loc) · 2.35 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "bootstrap-less-port",
"version": "2.5.1",
"description": "A Less port of Bootstrap v4",
"keywords": [
"bootstrap",
"less",
"css",
"framework",
"port"
],
"homepage": "https://github.com/seanCodes/bootstrap-less-port#readme",
"author": "Sean Juárez <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seanCodes/bootstrap-less-port.git"
},
"bugs": {
"url": "https://github.com/seanCodes/bootstrap-less-port/issues"
},
"engines": {
"node": ">=6"
},
"main": "less/bootstrap.less",
"style": "dist/css/bootstrap.css",
"less": "less/bootstrap.less",
"scripts": {
"test": "node test/test.js",
"build": "npm run lint && npm run css",
"bs:download": "node test/scripts/download-bs-source-files.js",
"bs:versions": "node test/scripts/utils/fetch-bs-repo-tags.js",
"compare": "node test/scripts/compare-less-css-to-sass-css.js",
"css": "npm run css-compile && npm run css-prefix && npm run css-minify",
"css-compile": "lessc --source-map less/bootstrap.less dist/css/bootstrap.css && lessc --source-map less/bootstrap-grid.less dist/css/bootstrap-grid.css && lessc --source-map less/bootstrap-reboot.less dist/css/bootstrap-reboot.css",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\"",
"css-minify": "cleancss --level 1 --format keep-breaks --source-map --source-map-inline-sources --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --format keep-breaks --source-map --source-map-inline-sources --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --format keep-breaks --source-map --source-map-inline-sources --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css",
"lint": "eslint .",
"unzip": "node test/scripts/utils/unzip-file.js"
},
"peerDependencies": {
"less": "^3.9.0"
},
"devDependencies": {
"ansi-colors": "^4.1.1",
"autoprefixer": "^9.7.6",
"clean-css-cli": "^4.3.0",
"eslint": "^7.20.0",
"less": "^3.11.1",
"node-stream-zip": "^1.13.2",
"postcss-cli": "^7.1.2"
},
"files": [
"dist",
"build",
"less"
],
"browserslist": [
">= 1%",
"last 1 major version",
"not dead",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}