-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "flex_e_ble",
"version": "2.0.1",
"description": "A simple yet flexible class naming structure on top of a flexbox based grid.",
"homepage": "https://flexeble.space/",
"main": "dist/_flex_e_ble.scss",
"files": [
"./dist/_flex_e_ble.scss",
"./dist/css/docs.css",
"./dist/css/flex_e_ble.css"
],
"repository": "[email protected]:jackmcpickle/flex_e_ble.git",
"scripts": {
"start": "sass --load-path=node_modules ./src/scss:./dist/css --source-map",
"test": "npm run start && mocha",
"build": "npm test && npm run template && npm run combine",
"combine": "concat -o dist/_flex_e_ble.scss ./src/scss/modules/_vars.scss ./src/scss/modules/_functions.scss ./src/scss/modules/_mixins.scss ./src/scss/modules/_build_container.scss ./src/scss/modules/_build_rows.scss ./src/scss/modules/_build_grids.scss ./src/scss/modules/_grid_states.scss",
"template": "node compile.js",
"deploy": "npm run template && gh-pages -d docs"
},
"keywords": [
"flexeble",
"flexible",
"flexbox",
"flex",
"grid",
"scss",
"sass",
"system",
"framework"
],
"author": "Jack McNicol <[email protected]>",
"license": "MIT",
"devDependencies": {
"concat": "1.0.3",
"gh-pages": "3.2.3",
"mocha": "9.2.2",
"pug": "3.0.3",
"sass": "1.78.0",
"sass-true": "6.1.0"
},
"dependencies": {
"include-media": "^1.4.9"
}
}