forked from jonjhiggins/aem-grid-scss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 956 Bytes
/
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
{
"name": "aem-grid-scss",
"version": "1.0.0",
"description": "Unofficial SCSS port of the AEM responsive grid",
"main": "aem-grid.scss",
"scripts": {
"build:scss": "node-sass src/scss/flexbox/aem-grid.scss dist/scss-grid.css --precision 8",
"build:scss:watch": "node-sass --watch src/scss/flexbox/aem-grid.scss dist/scss-grid.css --precision 8",
"build:less": "lessc src/less/grid.less > dist/less-grid-original.css",
"build": "npm run build:scss && npm run build:less"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jonjhiggins/aem-grid-scss.git"
},
"keywords": [
"AEM",
"grid"
],
"author": "Jon Higgins <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonjhiggins/aem-grid-scss/issues"
},
"homepage": "https://github.com/jonjhiggins/aem-grid-scss#readme",
"devDependencies": {
"less": "^3.7.1",
"node-sass": "^4.9.2"
}
}