-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "cssrecipes-grid",
"version": "1.0.0",
"description": "BEMish grid component",
"keywords": [
"browser",
"style",
"css",
"css-components",
"css-recipes",
"cssrecipes",
"recipes",
"grid",
"responsive"
],
"author": "bloodyowl",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cssrecipes/grid.git"
},
"homepage": "https://github.com/cssrecipes/grid",
"bugs": {
"url": "https://github.com/cssrecipes/grid/issues"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"lib",
"index.css",
"flex.css"
],
"devDependencies": {
"cssnext": "^1.6.0"
},
"scripts": {
"setup": "npm install && mkdir -p build",
"preprocess": "cssnext index.css build/index.css && cssnext flex.css build/flex.css",
"build": "npm run setup && npm run preprocess",
"preprocess-test": "cssnext test/test.css build/test.css",
"build-test": "npm run setup && npm run preprocess-test",
"test": "npm run build-test"
}
}