forked from gae-init/gae-init
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.04 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
{
"author": "Panayiotis Lipiridis <lipiridis@gmail.com>",
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/preset-env": "7.3.4",
"bower": "1.8.8",
"browser-sync": "2.26.3",
"coffeescript": "2.3.2",
"del": "4.0.0",
"eslint": "5.15.1",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-prettier": "3.0.1",
"gulp": "3.9.1",
"gulp-autoprefixer": "6.0.0",
"gulp-babel": "8.0.0",
"gulp-bower": "0.0.14",
"gulp-coffee": "3.0.3",
"gulp-concat": "2.6.1",
"gulp-cssnano": "2.1.3",
"gulp-help": "1.6.1",
"gulp-if": "2.0.2",
"gulp-less": "4.0.1",
"gulp-load-plugins": "1.5.0",
"gulp-plumber": "1.2.1",
"gulp-sequence": "1.0.0",
"gulp-size": "3.0.0",
"gulp-sourcemaps": "2.6.5",
"gulp-start": "1.0.1",
"gulp-uglify-es": "1.0.4",
"gulp-util": "3.0.8",
"gulp-watch": "5.0.1",
"gulp-yarn": "2.0.0",
"gulp-zip": "4.2.0",
"husky": "1.3.1",
"less": "3.9.0",
"lint-staged": "8.1.5",
"main-bower-files": "2.13.1",
"prettier": "1.16.4",
"require-dir": "1.2.0",
"uglify-es": "3.3.9",
"yargs-parser": "13.0.0",
"yarn": "1.13.0"
},
"license": "MIT",
"name": "gae-init",
"repository": {
"type": "git",
"url": "https://github.com/gae-init"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,less,md,yml,yaml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build": "gulp build",
"fix:assets": "yarn prettier --write",
"fix:code": "yarn test:code --fix",
"fix": "yarn fix:assets && yarn fix:code",
"install": "gulp init",
"prettier": "prettier --ignore-path .gitignore \"**/*.{json,less,md,yml,yaml}\"",
"postinstall": "echo 'Run `gulp` to start or `gulp help` for more.'",
"start": "gulp",
"test:assets": "yarn prettier --list-different",
"test:code": "eslint --ignore-path .gitignore \"**/*.js\"",
"test": "yarn test:assets && yarn test:code"
}
}