-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "remframe",
"version": "1.0.2",
"description": "Minimalistic PURE CSS Framework based on rem.",
"main": "index.js",
"scripts": {
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
"prepublishOnly": "npm run build",
"sass": "node-sass --output-style expanded src/remcss.scss dist/remcss.css && node-sass --output-style compressed src/remcss.scss dist/remcss.min.css",
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
"start": "run-p watch serve",
"test": "npm run build",
"watch": "onchange src -- run-p sass autoprefixer",
"build": "run-p sass autoprefixer banner",
"banner": "banner-cli dist/*.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dstN/remCSS.git"
},
"keywords": [
"css",
"css3",
"bootstrap",
"flex",
"framework",
"responsive",
"mobile",
"scss",
"dark-mode",
"html",
"html5"
],
"author": "Dustin Tramm <[email protected]> (https://github.com/dstN/remCSS)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dstN/remCSS/issues"
},
"homepage": "https://github.com/dstN/remCSS#readme",
"dependencies": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"autoprefixer": "^10.3.1",
"banner-cli": "^0.14.3",
"browser-sync": "^2.27.5",
"node-sass": "^7.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1"
}
}