-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.06 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
{
"name": "bradleyrodgers.github.io",
"version": "1.0.0",
"description": "This is my portfolio site which can be viewed at [http://www.bradleyrodgers.github.io](http://www.bradleyrodgers.github.io).",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://[email protected]/bradleyrodgers/bradleyrodgers.github.io.git"
},
"author": "@bradleyjrodgers",
"bugs": {
"url": "https://github.com/bradleyrodgers/bradleyrodgers.github.io/issues"
},
"homepage": "https://github.com/bradleyrodgers/bradleyrodgers.github.io#readme",
"scripts": {
"scss": "node-sass --output-style compressed -o assets/css scss",
"autoprefixer": "postcss -u autoprefixer -r assets/css/style.css",
"build": "npm run scss && npm run autoprefixer",
"watch": "onchange 'scss/**.scss' -- npm run build",
"start": "npm run build && parallelshell 'npm run watch'"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"node-sass": "^3.4.2",
"onchange": "^2.0.0",
"parallelshell": "^2.0.0",
"postcss-cli": "^2.5.1"
}
}