-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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": "suitcss-utils-flexbox",
"description": "Flexbox utilities for SUIT CSS",
"version": "0.1.0",
"style": "index.css",
"files": [
"index.css",
"index.js",
"lib"
],
"devDependencies": {
"autoprefixer": "^6.1.0",
"postcss": "^5.0.12",
"postcss-bem-linter": "^2.2.0",
"postcss-cli": "^2.3.2",
"postcss-custom-media": "^5.0.0",
"postcss-import": "^7.1.3",
"postcss-reporter": "^1.3.0",
"suitcss-components-test": "*",
"suitcss-utils-display": "^0.5.0",
"suitcss-utils-size": "^1.0.0"
},
"scripts": {
"build": "npm run setup && npm run preprocess",
"build-test": "npm run setup && npm run preprocess-test",
"preprocess": "postcss -c build.js -o build/build.css index.css",
"preprocess-test": "postcss -c build.js -o build/test.css test/test.css",
"setup": "npm install && mkdir -p build",
"watch": "npm run preprocess-test -- -w"
},
"repository": {
"type": "git",
"url": "git://github.com/simonsmith/utils-flexbox"
},
"keywords": [
"browser",
"css-utilities",
"flex",
"flexbox",
"suitcss",
"style"
],
"dependencies": {}
}