This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "css-gridish",
"version": "2.0.0",
"description":
"Automatically build your grid design’s CSS Grid code, CSS Flexbox fallback code, Sketch artboards, and Chrome extension.",
"engines": {
"node": ">=8.2.0"
},
"main": "bin/index.js",
"repository": {
"type": "git",
"url": "[email protected]:ibm/css-gridish.git"
},
"author": "James Y. Rauhut <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.9.2",
"gulp-json-editor": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-zip": "^4.1.0",
"handlebars": "^4.0.11",
"json-sass": "^1.3.5",
"through2-map": "^3.0.0",
"vinyl-paths": "^2.1.0",
"vinyl-source-stream": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.23.5",
"gulp-debug": "^3.2.0",
"gulp-run": "^1.7.1"
},
"scripts": {
"build": "npm run build:src && npm run build:examples",
"build:src":
"cp -a src/. bin/ && babel src/index.js --out-file ./bin/index.js",
"build:examples":
"npm run build --prefix ./examples/bootstrap && npm run build --prefix ./examples/carbon && npm run build --prefix ./examples/material",
"dev": "gulp watch",
"start": "node bin/css-gridish.js",
"test": "true"
},
"bin": {
"css-gridish": "bin/index.js"
},
"keywords": ["css grid", "css flexbox", "css", "sass", "design system"],
"babel": {
"plugins": ["transform-object-rest-spread"],
"presets": [
[
"env",
{
"targets": {
"node": "6.10"
}
}
]
]
}
}