-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "tls-css-framework",
"version": "0.0.1",
"description": "The Least Supported CSS Framework.",
"homepage": "https://tls-css-framework.github.io",
"repository": "dawid84/tls-css-framework",
"license": "MIT",
"author": "Dawid Pawelec <dawid@pawelecweb.com>",
"main": "src/_module.scss",
"keywords": [
"bootstrap",
"css",
"css3",
"flexbox",
"front-end",
"framework",
"grid",
"html",
"html5",
"responsive",
"mobile",
"mobile-first",
"postcss",
"responsive",
"sass",
"scss"
],
"ignore": [
".sasslintrc",
"package.json",
"license"
],
"dependencies": {},
"devDependencies": {
"browser-sync": "^2.26.3",
"nodemon": "^1.18.4",
"node-sass": "^4.9.4",
"postcss-cli": "^6.0.1",
"rimraf": "^2.6.2",
"sass-lint": "^1.12.1",
"typescript": "^3.1.3"
},
"engines": {
"node": ">=8"
},
"scripts": {
"start": "npm run watch-main",
"example2": "npm run watch-example2",
"build-main": "npm run clean && npm run sass-main",
"clean": "rimraf dist/css",
"sass-main": "node-sass --output-style compressed examples/css/_example.scss dist/css/example.min.css",
"sass-example2": "node-sass --output-style compressed examples/millennial_bank/css/_millennial-bank.scss dist/css/millennial-bank.min.css",
"watch-main": "nodemon -e scss -x \"npm run sass-main\"",
"watch-example2": "nodemon -e scss -x \"npm run sass-example2\""
}
}