-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
48 lines (48 loc) · 1.68 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "tent-css",
"version": "1.4.3",
"description": "A CSS survival kit.",
"author": "Aaron Mazade <[email protected]>",
"style": "dist/tent.css",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sitetent/tentcss.git"
},
"homepage": "http://css.sitetent.com",
"bugs": {
"url": "https://github.com/sitetent/tentcss/issues"
},
"scripts": {
"version:patch": "npm version patch -m \"Bumped to %s\"",
"tent:expanded": "node-sass --output-style expanded src/tent.scss dist/tent.css",
"tent:compressed": "node-sass --output-style compressed src/tent.scss dist/tent.min.css",
"crystal:expanded": "node-sass --output-style expanded src/themes/crystal/crystal.scss dist/themes/crystal.css",
"crystal:compressed": "node-sass --output-style compressed src/themes/crystal/crystal.scss dist/themes/crystal.min.css",
"autoprefixer": "postcss -u autoprefixer --no-map --autoprefixer.browsers 'last 4 versions' -r dist/*.css",
"serve": "browser-sync start --serveStatic 'examples' --files 'dist/*.css, examples/**/*.html,' --server",
"dev": "parallelshell 'npm run serve' 'npm run watch'",
"watch": "onchange src -- npm run build",
"build": "npm-run-all tent:expanded tent:compressed crystal:expanded crystal:compressed autoprefixer"
},
"keywords": [
"css",
"flexbox",
"html",
"html5",
"scss",
"sass",
"responsive",
"framework"
],
"devDependencies": {
"autoprefixer": "^6.3.7",
"browser-sync": "^2.14.0",
"clean-css": "^3.4.19",
"node-sass": "^3.8.0",
"npm-run-all": "^2.3.0",
"onchange": "^2.5.0",
"parallelshell": "^2.0.0",
"postcss-cli": "^2.5.2"
}
}