-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.15 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
{
"name": "boba",
"version": "1.7.2",
"description": "A lightweight, modular, CSS-only framework.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iFallUpHill/boba.git"
},
"keywords": [
"boba",
"lightweight",
"modular",
"css",
"framework"
],
"author": "Jason Manson-Hing",
"contributors": [
{
"name": "Jason Manson-Hing",
"url": "https://github.com/iFallUpHill/"
},
{
"name": "Andrew Chung",
"url": "https://github.com/andrewjungg/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/iFallUpHill/boba/issues"
},
"homepage": "https://github.com/iFallUpHill/boba#readme",
"dependencies": {
"del": "^5.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^6.1.0",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-jshint": "^2.1.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-strip-debug": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"jshint": "^2.10.2",
"node-sass": "^4.12.0",
"yargs": "^13.3.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"browser-sync": "^2.26.7",
"gulp-babel": "^8.0.0",
"gulp-nunjucks": "^5.0.0",
"gulp-prism": "^1.2.0",
"puppeteer": "^1.19.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
}
},
"browserslist": [
"last 2 versions",
"> 5%"
],
"files": [
"LICENSE",
"README.md",
"gulpfile.js",
"gulp_tasks/*.js",
"src/scss/",
"!src/scss/docs/",
"dist/*.css",
"!dist/documentation.min.css"
]
}