-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.41 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
{
"name": "ovrmnd.github.io",
"version": "0.1.0",
"description": "A web and digital agency based in Des Moines, Iowa.",
"scripts": {
"browsersync": "browser-sync start --server --files 'css/style.css, js/*.min.js, **/*.html'",
"build": "npm run js:build && npm run css:build",
"css:autoprefix": "postcss --use autoprefixer --output css/style.css css/style.css",
"css:build": "npm run css:compile && npm run css:autoprefix",
"css:compile": "node-sass --output-style compressed scss/style.scss css/style.css",
"css:watch": "watch 'npm run css:build' scss",
"dev": "parallelshell 'npm run watch' 'npm run browsersync'",
"js:build": "npm run js:head && npm run js:main",
"js:head": "uglifyjs js/head/*.js -o js/head.min.js",
"js:main": "uglifyjs js/src/*.js -o js/main.min.js",
"js:watch": "watch 'npm run js:build' js/head js/src",
"watch": "parallelshell 'npm run js:watch' 'npm run css:watch'"
},
"repository": {
"type": "git",
"url": "https://github.com/ovrmnd/ovrmnd.github.io.git"
},
"author": "Ovrmnd",
"license": "MIT",
"bugs": {
"url": "https://github.com/ovrmnd/ovrmnd.github.io/issues"
},
"homepage": "https://github.com/ovrmnd/ovrmnd.github.io#readme",
"devDependencies": {
"autoprefixer": "latest",
"node-sass": "latest",
"parallelshell": "latest",
"postcss-cli": "latest",
"uglify-js": "latest",
"watch": "latest"
}
}