-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "three-dots",
"version": "0.3.2",
"description": "CSS loading animations made with single element",
"files": [
"dist",
"scss",
"less",
"_index.scss"
],
"homepage": "https://nzbin.github.io/three-dots/",
"repository": {
"type": "git",
"url": "git+https://github.com/nzbin/three-dots.git"
},
"author": "nzbin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nzbin/three-dots/issues"
},
"keywords": [
"three-dots",
"loading-animations",
"single-element-css-spinners"
],
"scripts": {
"start": "run-p build watch",
"build": "run-s clean sass sassmin postcss copy",
"clean": "rimraf dist",
"sass": "sass --style=expanded scss/three-dots.scss dist/three-dots.css",
"sassmin": "sass --style=compressed scss/three-dots.scss dist/three-dots.min.css",
"copy": "cp dist/three-dots.css docs/css",
"postcss": "postcss -r dist/*.css --map",
"watch": "onchange sass -- run-s sass copy",
"lint": "stylelint \"scss/**/*.scss\" --fix",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.4.19",
"postcss-cli": "^10.0.0",
"postcss-header": "^3.0.3",
"rimraf": "^3.0.2",
"sass": "^1.56.1",
"stylelint": "^14.15.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-scss": "^4.3.0"
},
"engines": {
"node": ">=14"
}
}