forked from picturepan2/spectre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.06 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@vianetz/spectre.css",
"version": "2.0.0",
"description": "Spectre.css: A lightweight, responsive and modern CSS framework",
"homepage": "https://vianetz.github.io/spectre-css",
"author": "Yan Zhu <[email protected]>",
"main": "dist/spectre.css",
"repository": {
"type": "git",
"url": "git+https://github.com/vianetz/spectre-css.git"
},
"license": "MIT",
"keywords": [
"css",
"framework",
"flexbox",
"responsive",
"mobile-friendly",
"front-end",
"sass",
"modern"
],
"bugs": {
"url": "https://github.com/vianetz/spectre-css/issues"
},
"contributors": [
"Christoph Massmann <[email protected]> (https://vianetz.com/)"
],
"devDependencies": {
"@space-labs/osnap": "^1.5.3",
"bundlesize": "^0.18.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-csscomb": "^3.1.0",
"gulp-pug": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"http-server": "^14.1.1",
"jstransformer-highlight": "github:vast/jstransformer-highlight",
"jstransformer-markdown-it": "^3.0.0",
"sass": "^1.68.0",
"sass-migrator": "^1.7.3",
"start-server-and-test": "^2.0.1",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0"
},
"browserslist": [
"last 4 Chrome versions",
"Edge >= 12",
"Firefox ESR",
"last 4 Safari versions",
"last 4 Opera versions",
"Explorer >= 10"
],
"scripts": {
"start-server": "http-server ./docs -a 127.0.0.1 -p 8080 --silent",
"build": "gulp",
"test": "npm run test:size && npm run test:style && npm run test:visual",
"test:size": "bundlesize",
"test:style": "stylelint **/*.scss",
"test:visual": "osnap download-chromium && osnap --no-create --no-skip --no-only",
"ci": "start-server-and-test start-server http://127.0.0.1:8080 test"
},
"files": [
"src/*",
"dist/*"
],
"bundlesize": [
{
"path": "./dist/spectre.min.css",
"maxSize": "10 kB"
}
],
"dependencies": {
"normalize.css": "^8.0.1"
}
}