-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "@rsm-hcd/scss-grid",
"description": "Sass (scss) based grid system",
"version": "3.1.0",
"homepage": "https://github.com/rsm-hcd/scss-grid#readme",
"files": [
"dist/**",
"src/**"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"scss",
"sass",
"grid",
"flexbox"
],
"license": "Apache-2.0",
"style": "src/scss-grid.scss",
"repository": {
"type": "git",
"url": "git+https://github.com/rsm-hcd/scss-grid.git"
},
"bugs": {
"url": "https://github.com/rsm-hcd/scss-grid/issues"
},
"scripts": {
"build": "sass src/scss-grid.scss dist/scss-grid.css",
"clean": "rimraf dist && mkdir dist",
"docs": "sassdoc src -d docs",
"docs:sync": "git checkout gh-pages && git merge master && git push origin gh-pages && git checkout master",
"format": "prettier --write \"src/**/*.scss\"",
"postbuild": "npm run docs",
"prebuild": "npm run clean && npm run format && echo Using Sass && sass --version",
"prepublishOnly": "npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "sass --watch src -o dist"
},
"dependencies": {
"sass": "^1.79.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sassdoc": "^2.7.4"
}
}