-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
52 lines (52 loc) · 1.81 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
{
"name": "placeholder-loading",
"version": "0.7.0",
"description": "Simple and flexible, css only, content placeholder loading animation.",
"scripts": {
"start": "gulp",
"build": "NODE_ENV=production gulp build",
"serve": "gulp serve",
"commit:version": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); branch=${branch#release/}; npm --no-git-tag-version version ${branch} && git add package.json package-lock.json && git commit -m \"build: bumps version ${branch}\"",
"commit:build": "npm run build && git add dist && git commit -m \"build: runs 'npm run build'\"",
"commit": "npm run commit:version && npm run commit:build",
"deploy:github": "git subtree push --prefix dist origin gh-pages",
"deploy:npm": "npm publish",
"deploy": "npm run deploy:github && npm run deploy:npm",
"lint": "npm run lint:css",
"lint:css": "stylelint 'src/scss/*.scss'"
},
"keywords": [
"placeholder",
"content",
"flex",
"scss"
],
"author": "Zalog (https://www.zalog.ro/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zalog/placeholder-loading.git"
},
"bugs": {
"url": "https://github.com/zalog/placeholder-loading/issues"
},
"homepage": "https://github.com/zalog/placeholder-loading#readme",
"devDependencies": {
"autoprefixer": "^10.4.7",
"browser-sync": "^2.27.10",
"cssnano": "^5.1.12",
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-header": "^2.0.9",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"postcss": "^8.4.14",
"sass": "^1.82.0",
"stylelint": "^14.9.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-scss": "^4.2.0"
}
}