-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 872 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 872 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
{
"name": "@thepragmaticdev/exoskeleton",
"version": "1.0.5",
"description": "Simple, responsive CSS boilerplate.",
"author": "Stephen Cathcart",
"license": "ISC",
"homepage": "https://github.com/the-pragmatic-dev/exoskeleton",
"main": "src/exoskeleton.less",
"scripts": {
"start": "npm run build && concurrently --kill-others \"npm run budo\" \"npm run watch-html\" \"less-watch-compiler\"",
"build": "npm run lessc",
"budo": "budo --dir dist --live --open",
"watch-html": "copy-and-watch --watch index.html dist/",
"lessc": "lessc --js --clean-css src/exoskeleton.less dist/exoskeleton.min.css"
},
"dependencies": {},
"devDependencies": {
"budo": "^11.6.3",
"concurrently": "^5.0.2",
"copy-and-watch": "^0.1.4",
"less-plugin-clean-css": "^1.5.1",
"less-watch-compiler": "^1.14.1",
"lessc": "^1.0.2"
}
}