forked from BrowserSync/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 779 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 779 Bytes
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
{
"name": "bs-recipes",
"version": "1.2.2",
"description": "Fully working project examples showing how to use BrowserSync in various ways",
"repository": "BrowserSync/recipes",
"author": "Shane Osbourne",
"main": "index.js",
"files": [
"recipes",
"index.js",
"manifest.json"
],
"scripts": {
"clean:nm": "find ./recipes -name node_modules | xargs rm -rf",
"clean:other": "find . -name .sass-cache | xargs rm -rf && find . -name .idea | xargs rm -rf",
"build": "node crossbow.js",
"test": "npm run-script build",
"prepublish": "npm run clean:nm && npm run clean:other"
},
"license": "ISC",
"homepage": "http://www.browsersync.io/docs/recipes/",
"devDependencies": {
"crossbow": "^0.4.5",
"node-dir": "^0.1.6"
}
}