forked from micromata/Baumeister
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.29 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "baumeister",
"title": "Baumeister",
"description": "The frontend build workflow for your needs",
"homepage": "https://github.com/micromata/baumeister",
"author": {
"name": "Michael Kühnel",
"email": "m.kuehnel@micromata.de",
"url": "http://www.micromata.de"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"version": "1.1.0",
"repository": "micromata/baumeister",
"private": true,
"dependencies": {
"bootstrap-sass": "3.3.7",
"jquery": "3.2.1"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browser-sync": "^2.18.13",
"browserify": "^14.5.0",
"browserify-incremental": "^3.1.1",
"chalk": "^2.3.0",
"core-js": "^2.5.1",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"eslint-config-xo": "0.19.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-security": "^1.4.0",
"gulp": "github:gulpjs/gulp#3f5aba2",
"gulp-banner": "^0.1.3",
"gulp-bootlint": "^0.8.1",
"gulp-bump": "^2.8.0",
"gulp-changed": "^3.1.0",
"gulp-concat": "^2.6.1",
"gulp-conventional-changelog": "^1.1.6",
"gulp-envify": "^1.0.0",
"gulp-eslint": "^4.0.0",
"gulp-front-matter": "^1.3.0",
"gulp-git": "^2.4.2",
"gulp-html": "^0.4.7",
"gulp-htmlmin": "^3.0.0",
"gulp-imagemin": "^3.4.0",
"gulp-notify": "^3.0.0",
"gulp-nsp": "^2.4.2",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^7.0.0",
"gulp-processhtml": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-rev-append": "^0.1.8",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-stylelint": "^5.0.0",
"gulp-touch": "^1.0.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"gulpsmith": "^0.5.5",
"husky": "^0.14.3",
"jest-cli": "^21.2.1",
"jstransformer-handlebars": "^1.0.0",
"merge-stream": "^1.0.1",
"metalsmith": "^2.3.0",
"metalsmith-in-place": "^3.0.1",
"metalsmith-layouts": "^1.8.1",
"metalsmith-register-helpers": "^0.4.0",
"minimist": "^1.2.0",
"regenerator": "^0.11.0",
"semver": "^5.4.1",
"stylelint-config-standard": "^17.0.0",
"uncss": "^0.15.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"pretest": "gulp lint --production",
"test": "gulp test --production",
"test:watch": "gulp test --watch",
"start": "gulp",
"dev": "gulp build",
"serve": "gulp serve",
"watch": "gulp watch",
"lint": "gulp lint --production",
"lint:fix": "gulp lint",
"build": "gulp build --production",
"build:check": "gulp serve --production",
"release:patch": "gulp release --bump patch",
"release:minor": "gulp release --bump minor",
"release:major": "gulp release --bump major",
"postmerge": "npm install"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/gulp/",
"<rootDir>/node_modules/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/app/**/*.{js,jsx}",
"!**/node_modules/**"
],
"coverageReporters": [
"lcov",
"text",
"text-summary"
]
}
}