This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
forked from swapagarwal/swag-for-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.7 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
{
"name": "swag-for-dev",
"version": "1.0.0",
"description": "swag opportunities for developers",
"main": "index.js",
"author": "Swapnil Agarwal",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/swapagarwal/swag-for-dev/issues"
},
"homepage": "http://devswag.io",
"repository": {
"type": "git",
"url": "git+https://github.com/swapagarwal/swag-for-dev.git"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"eclint": "^2.8.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-download-stream": "^0.0.19",
"gulp-htmlmin": "^5.0.1",
"gulp-minify": "^3.1.0",
"gulp-pug": "^4.0.1",
"gulp-responsive": "^2.11.0",
"gulp-rev": "^8.1.1",
"gulp-rev-delete-original": "^0.2.3",
"gulp-stylus": "^2.7.0",
"gulp-uglify-es": "^1.0.4",
"gulp-webserver": "^0.9.1",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"merge-stream": "^1.0.1",
"xo": "^0.24.0"
},
"scripts": {
"lint": "eclint check && xo",
"lint:fix": "eclint fix && xo --fix",
"build": "cross-env NODE_ENV=production gulp build"
},
"xo": {
"rules": {
"unicorn/prefer-spread": "off"
},
"overrides": [
{
"files": [
"src/js/**/*.js"
],
"envs": [
"browser"
]
}
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"relative": true,
"linters": {
"**/*": [
"eclint fix",
"git add"
],
"**/*.{js,json}": [
"xo --fix",
"git add"
]
}
}
}