-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "lattice.css",
"version": "3.1.0",
"description": "A responsive flexbox-based CSS grid framework that uses BEM naming conventions.",
"keywords": [
"grid",
"css",
"sass",
"scss",
"responsive"
],
"homepage": "https://github.com/alexchantastic/lattice.css",
"bugs": {
"url": "https://github.com/alexchantastic/lattice.css/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/alexchantastic/lattice.css.git"
},
"main": "dist/lattice.css",
"module": "src/lattice.scss",
"style": "dist/lattice.css",
"sass": "src/lattice.scss",
"unpkg": "dist/lattice.min.css",
"files": [
"dist",
"src"
],
"author": "Alex Chan",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.23.6",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean": "^0.4.0",
"gulp-csso": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-stylelint": "^7.0.0",
"run-sequence": "^2.2.1",
"stylelint": "^9.1.3",
"stylelint-config-recess-order": "^1.2.4",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^2.5.0"
},
"scripts": {
"build": "gulp build",
"dev": "gulp",
"lint": "gulp lint"
}
}