This repository was archived by the owner on Apr 28, 2020. 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
45 lines (45 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.3 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
45
{
"name": "yl-bp",
"description": "HTML/SCSS/JS boilerplate",
"version": "5.0.1",
"homepage": "https://github.com/yellowled/yl-bp",
"author": {
"name": "Matthias Mees",
"url": "https://yellowled.de"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/yellowled/yl-bp.git"
},
"bugs": {
"url": "https://github.com/yellowled/yl-bp/issues"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "parcel build src/*.html",
"lint:js": "eslint src/js/**/*",
"lint:scss": "stylelint --syntax scss src/css/**/*.scss",
"start": "parcel src/index.html --open"
},
"dependencies": {
"core-js": "^3.6.5",
"node-normalize-scss": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"eslint": "^6.8.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1",
"postcss-flexbugs-fixes": "^4.2.0",
"sass": "^1.26.5",
"stylelint": "^13.3.3",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.17.1"
}
}