-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "unistyle-flex-grid",
"version": "0.2.1",
"description": "Simple Flexbox grid layout system built with Unistyle",
"main": "dist/src/index.js",
"scripts": {
"compile": "unistyle -o dist/ufg.css src/index.js",
"distribute": "npm run-script compile && npm run-script prefix && npm run-script minify",
"minify": "minify dist/ufg.css",
"prefix": "postcss --use autoprefixer dist/ufg.css -d dist/",
"prepublish": "babel src --out-dir dist/src",
"build": "npm run-script prepublish && npm run-script distribute",
"test": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/davegomez/unistyle-flex-grid.git"
},
"keywords": [
"flexbox",
"grid",
"css",
"unistyle",
"ecmascript",
"ecmascript2015",
"es6",
"es2015"
],
"author": {
"name": "David Gómez",
"email": "[email protected]",
"url": "https://github.com/davegomez"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davegomez/unistyle-flex-grid/issues"
},
"homepage": "https://github.com/davegomez/unistyle-flex-grid#readme",
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel": "^5.8.29",
"babel-eslint": "^4.1.3",
"eslint": "^1.8.0",
"minifier": "^0.7.1",
"postcss-cli": "^2.3.2",
"unistyle": "^0.3.0"
}
}