-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "scss-spinners",
"version": "2.1.3",
"description": "SCSS Spinners and Loaders based on webkul's csspin",
"main": "dist/spinners.css",
"repository": {
"type": "git",
"url": "https://github.com/RinMinase/scss-spinners.git"
},
"keywords": [
"sass-spinner",
"scss-spinner",
"css-spinner",
"spinner",
"scss",
"sass",
"node-sass"
],
"author": "Kristian Alunan (https://github.com/RinMinase)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RinMinase/scss-spinners/issues"
},
"homepage": "https://rinminase.github.io/scss-spinners",
"scripts": {
"clear": "rm -rf dist/ && mkdir dist",
"create-css": "node-sass --output-style expanded spinners.scss > dist/spinners.css",
"create-min-css": "node-sass --output-style compressed spinners.scss > dist/spinners.min.css",
"github-release": "release-it --ci --no-increment --verbose || true",
"start": "npm run clear && npm run create-css",
"build": "npm run clear && npm run create-css && npm run create-min-css",
"watch": "rm -rf dist/ && node-sass --watch . --recursive --output dist"
},
"devDependencies": {
"node-sass": "^6.0.1",
"release-it": "^14.11.6"
},
"resolutions": {
"**/ansi-regex": "^5.0.1",
"**/tar": "^6.1.9"
},
"release-it": {
"git": {
"addUntrackedFiles": false,
"commit": false,
"tag": false,
"push": false,
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"releaseName": "${version}",
"assets": "dist/*.css"
},
"npm": {
"publish": false
}
}
}