-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
78 lines (78 loc) · 2.09 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 <[email protected]>",
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/preset-env": "7.1.6",
"bower": "1.8.4",
"browser-sync": "2.26.3",
"coffee-script": "1.12.7",
"del": "3.0.0",
"eslint": "5.9.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.0",
"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.0",
"gulp-sequence": "1.0.0",
"gulp-size": "3.0.0",
"gulp-sourcemaps": "2.6.4",
"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.1.4",
"less": "3.8.1",
"lint-staged": "8.0.4",
"main-bower-files": "2.13.1",
"prettier": "1.15.2",
"require-dir": "1.1.0",
"uglify-es": "3.3.9",
"yargs-parser": "11.1.0",
"yarn": "1.12.3"
},
"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": "npm run prettier -- --list-different",
"test:code": "eslint --ignore-path .gitignore --ignore-path .prettierignore \"main/**/*.js\"",
"test": "npm run test:assets && npm run test:code"
}
}