-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.2 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "visual-regression-workshop",
"version": "1.0.0",
"description": "A highly functional toolkit to help jump-start a typical responsive web design project. This is a full-featured variation of the more basic [responsive starter kit](https://github.com/mpgilbertusa/Responsive-Starter-Kit) which was primarily created for instructional purposes to introduce basic RWD concepts. This version includes the Sass pre-processor as well as a handful of add-ons for typical responsiveness and can be used on a variety of real-world projects.",
"main": "index.js",
"scripts": {
"sass": "node-sass scss/ -o dist/assets/css",
"sass:watch": "node-sass -w -r scss/ -o dist/assets/css",
"start": "npm run sass && npm run sass:watch & http-server dist -o",
"test": "mocha webdrivercss/*.js -t 60000",
"local": "npm run sass && npm run sass:watch & http-server dist -s & ngrok http 8080",
"wdio-config": "wdio config",
"wdio": "wdio wdio.conf.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"http-server": "^0.8.4",
"ngrok": "^0.2.2",
"node-sass": "^3.3.3",
"webdrivercss": "klamping/webdrivercss#webdriverio-3-compatibility",
"webdriverio": "3.2.5"
}
}