This repository was archived by the owner on Jun 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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": "@rensatsu/blueberry-css",
"version": "1.9.0",
"description": "Blueberry CSS Stylesheet",
"main": "css/blueberry.css",
"scripts": {
"prepublishOnly": "npm run build",
"watch": "gulp default && gulp watch",
"deploy": "gulp default",
"build": "gulp styles",
"tag:patch": "npm version patch",
"tag:minor": "npm version minor",
"format": "prettier --write \"scss/**/*.{css,scss}\" gulpfile.js .prettierrc.json",
"format:check": "prettier --check \"scss/**/*.{css,scss}\" gulpfile.js .prettierrc.json",
"test": "echo 'No tests'"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rensatsu/blueberry-css.git"
},
"author": "Rensatsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/rensatsu/blueberry-css/issues"
},
"homepage": "https://github.com/rensatsu/blueberry-css#readme",
"files": [
"css/**",
"scss/**"
],
"keywords": [
"scss",
"sass",
"css"
],
"devDependencies": {
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-sass": "^5.1.0",
"gulp-touch-cmd": "0.0.1",
"prettier": "^3.0.3",
"sass": "^1.53.0"
}
}