-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.83 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "gaida",
"version": "1.0.5",
"description": "A minimalist CSS framework with modern grid system.",
"homepage": "https://dezudas.github.io/gaida/",
"repository": "dezudas/gaida",
"license": "MIT",
"author": "Dijup Tuladhar <[email protected]>",
"main": "dist/gaida.css",
"keywords": [
"css",
"css3",
"flexbox",
"front-end",
"framework",
"html",
"html5",
"kickstarter",
"less",
"responsive",
"mobile",
"mobile-first",
"postcss",
"responsive",
"sass",
"scss",
"stylus"
],
"ignore": [
".appveyor.yml",
".editorconfig",
".eslintrc",
".github",
".gitignore",
".npmignore",
".sasslintrc",
".travis.yml",
"backstop.conf.js",
"bower.json",
"changelog.md",
"composer.json",
"package.js",
"package.json",
"src",
"test"
],
"dependencies": {
"normalize.css": "^8.0.0"
},
"devDependencies": {
"autoprefixer": "^8.5.2",
"ava": "^0.25.0",
"backstopjs": "^3.2.16",
"banner-cli": "^0.11.1",
"browser-sync": "^2.18.5",
"editorconfig-tools": "^0.1.1",
"eslint": "^4.19.1",
"eslint-config-styled": "^0.0.2",
"husky": "^0.14.3",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"nyc": "^12.0.1",
"onchange": "^4.0.0",
"postcss-cli": "^5.0.0",
"rimraf": "^2.5.4",
"sass-lint": "^1.12.1"
},
"engines": {
"node": ">=6"
},
"scripts": {
"start": "run-p build watch serve",
"build": "run-s clean sass autoprefixer banner",
"clean": "rimraf dist",
"sass": "node-sass --output-style expanded src/gaida.scss dist/gaida.css && node-sass --output-style compressed src/gaida.scss dist/gaida.min.css && node-sass --output-style compressed src/gaida.scss docs/css/gaida.min.css",
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
"banner": "banner-cli dist/*.css",
"watch": "onchange src -- run-p build",
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
"backstop": "run-s build && run-p serve compare",
"reference": "backstop reference --configPath=backstop.conf.js",
"compare": "backstop test --configPath=backstop.conf.js",
"lint": "sass-lint -c .sasslintrc src --verbose --no-exit && eslint test -c styled && editorconfig-tools check .",
"ava": "nyc ava",
"test": "run-s build lint ava",
"precommit": "run-p test"
},
"bugs": {
"url": "https://github.com/dezudas/gaida/issues",
"email": "[email protected]"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}