-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@whitesmith/qnorr-styles",
"version": "0.3.5",
"description": "A style agnostic, slightly opinionated, css framework seasoning to bootstrap your projects",
"repository": "git@github.com:whitesmith/qnorr-css.git",
"author": "Whitesmith <info@whitesmith.co>",
"license": "MIT",
"keywords": [
"css",
"scss",
"sass",
"stylesheets",
"bootstrap",
"framework",
"oocss",
"functional css"
],
"main": "dist/qnorr.css",
"style": "dist/qnorr.css",
"files": [
"dist/*.{css,map}",
"scss/**/*.scss"
],
"scripts": {
"qnorr:dev": "gulp dev",
"qnorr:build": "gulp",
"start": "yarn run qnorr:dev",
"docs:deploy": "yarn run qnorr:build && node deploy.js",
"playground:dev": "rm -rf public/** && parcel site/index.html --out-dir public",
"playground:build": "rm -rf public/** && parcel build site/index.html --out-dir public --public-url ./",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.4.7",
"browser-sync": "^2.26.3",
"cssnano": "^4.1.8",
"del": "^3.0.0",
"gh-pages": "^2.0.1",
"glob": "^7.1.6",
"gulp": "^4.0.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.4",
"jest": "^24.9.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.11.0",
"postcss-cli": "^6.1.1",
"postcss-modules": "^1.4.1",
"posthtml-expressions": "^1.1.0",
"posthtml-extend": "^0.3.0",
"posthtml-modules": "^0.4.2",
"sass-module-importer": "^1.4.0",
"sass-true": "^5.0.0",
"sassdoc": "^2.7.0"
},
"dependencies": {
"mappy-breakpoints": "^0.2.3",
"normalize.css": "^8.0.1"
}
}