-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 2.02 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
{
"name": "@rgbyk/boilerplate",
"version": "1.1.9",
"description": "over-engineered, but a good one indeed.",
"keywords": [
"rgbyk",
"boilerplate",
"jekyll",
"sass"
],
"homepage": "https://github.com/rgbyk/boilerplate#readme",
"bugs": {
"url": "https://github.com/rgbyk/boilerplate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rgbyk/boilerplate.git"
},
"license": "MIT",
"author": "Daniel Haim",
"scripts": {
"clean": "chmod +x ./bin/lib/core/clean.sh && ./bin/lib/core/clean.sh",
"installer": "chmod +x ./bin/lib/core/installer.sh && ./bin/lib/core/installer.sh",
"kill": "chmod +x ./bin/lib/core/kill.sh && ./bin/lib/core/kill.sh",
"unpack": "chmod +x ./bin/lib/core/unpack.sh && ./bin/lib/core/unpack.sh",
"tree": "tree -I 'node_modules'",
"release": "npm version patch && git diff-index --quiet HEAD -- && git add --force package.json package-lock.json && git commit -m 'Bump version and build package for release' && git push",
"dev": "npm run watch:styles & npm run watch:scripts",
"scripts": "chmod +x ./bin/lib/scripts.sh && ./bin/lib/scripts.sh",
"styles": "chmod +x ./bin/lib/styles.sh && ./bin/lib/styles.sh",
"watch:scripts": "nodemon --watch src/js -e js -x \"npm run scripts\"",
"watch:styles": "nodemon --watch src/scss -e scss -x \"npm run styles\""
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rgbyk/color": "^1.3.6",
"autoprefixer": "^10.0.2",
"browserslist": "^4.14.7",
"caniuse-lite": "^1.0.30001157",
"css-declaration-sorter": "^6.0.2",
"cssnano": "^4.1.10",
"nodemon": "^2.0.6",
"postcss": "^8.1.7",
"postcss-cli": "^8.2.0",
"postcss-combine-duplicated-selectors": "^10.0.2",
"postcss-merge-idents": "^4.0.1",
"postcss-merge-rules": "^4.0.3",
"postcss-merge-selectors": "0.0.6",
"postcss-sorting": "^6.0.0",
"sass": "^1.29.0",
"terser": "^5.3.8",
"terser-dir": "^1.0.7"
}
}