-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
85 lines (85 loc) · 1.87 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "made-with-love-in",
"version": "1.0.0",
"description": "Mircoservice for serving and listing \"Made with love in <country-name>\" badges",
"main": "app.js",
"scripts": {
"start": "node app.js",
"lint": "eclint check && xo",
"lint:fix": "eclint fix && xo --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plibither8/made-with-love-in.git"
},
"author": "Mihir Chaturvedi",
"bugs": {
"url": "https://github.com/plibither8/made-with-love-in/issues"
},
"homepage": "https://github.com/plibither8/made-with-love-in#readme",
"dependencies": {
"fastify": "^3.10.1",
"fastify-static": "^3.4.0",
"gh-badges": "^2.1.0",
"pug": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^10.2.3",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-latest": "^6.24.1",
"cssnano": "^4.1.10",
"del": "^6.0.0",
"eclint": "^2.8.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-cssbeautify": "3.0.0",
"gulp-csslint": "^1.0.1",
"gulp-esformatter": "^7.0.0",
"gulp-html": "3.2.0",
"gulp-inline-source": "^4.0.0",
"gulp-postcss": "^9.0.0",
"gulp-pug": "^4.0.1",
"gulp-stylus": "^2.7.0",
"gulp-watch": "^5.0.1",
"rucksack-css": "^1.0.2",
"xo": "^0.37.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"relative": true,
"linters": {
"src/**": [
"eclint fix",
"git add"
],
"src/**.{js,json}": [
"xo --fix",
"git add"
]
}
},
"xo": {
"ignore": [
"public/**/*"
],
"overrides": [
{
"files": "src/js/*.js",
"env": [
"browser"
]
}
],
"global": [
"ClipboardJS",
"countryNames"
]
}
}