-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 846 Bytes
/
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
{
"name": "preview-responsive-navbar",
"version": "0.0.1",
"description": "A preview responsive navbar iframe",
"main": "style.css",
"scripts": {
"start": "npm run postcss && browser-sync start --server --files '*.css' '*.js' '*.html'",
"build": "NODE_ENV=production yarn postcss -x",
"postcss": "postcss ./style.src.css -o ./style.css",
"watch": "NODE_ENV=development yarn postcss -w",
"test": "echo \"no has tests lol\" && exit 1"
},
"author": "Fernando Moreira <[email protected]> (https://nandomoreira.me/)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^8.0.0",
"browser-sync": "^2.23.6",
"postcss-cli": "^5.0.0",
"postcss-csso": "^3.0.0",
"postcss-import": "^11.1.0"
},
"files": [
"index.html",
"style.src.css",
"style.css",
"README.md"
]
}