-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
64 lines (64 loc) · 1.33 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
60
61
62
63
64
{
"name": "main.css",
"version": "3.0.0",
"description": "The main.css file from HTML5 Boilerplate",
"keywords": [
"css",
"h5bp"
],
"homepage": "https://github.com/h5bp/main.css#readme",
"bugs": {
"url": "https://github.com/h5bp/main.css/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h5bp/main.css.git"
},
"license": "MIT",
"author": "@h5bp",
"files": [
"dist/",
"src/",
"CHANGELOG.md",
"LICENSE.txt",
"package.json",
"README.md"
],
"scripts": {
"build": "gulp build",
"lint:css": "stylelint \"src/*.css\"",
"lint:js": "eslint .",
"test": "npm run lint:css"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"eslintConfig": {
"extends": "eslint:recommended"
},
"devDependencies": {
"@babel/register": "^7.23.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"@babel/eslint-parser": "^7.24.1",
"babel-preset-env": "^1.7.0",
"del": "6.1.1",
"eslint": "^8.57.0",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-cssimport": "^7.0.0",
"gulp-header": "^2.0.9",
"gulp-load-plugins": "^2.0.8",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.0"
}
}