-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 989 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
29
30
31
32
33
34
35
{
"name": "stayfocused",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p watch watch:styles",
"build": "run-s clean clean:styles build:styles copy",
"deploy": "run-s build publish",
"build:styles": "sass src/scss:src/styles",
"watch": "live-server src",
"watch:styles": "sass src/scss:src/styles --watch",
"clean": "rm -rf dist",
"clean:styles": "rm -rf src/styles",
"copy": "mkdir dist && rsync -avr --exclude=\"/scss\" src/ dist",
"publish": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cathacz/stayFocused.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cathacz/stayFocused/issues"
},
"homepage": "https://github.com/cathacz/stayFocused#readme",
"devDependencies": {
"gh-pages": "^3.1.0",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"sass": "^1.32.13"
}
}