-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.66 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
{
"name": "buildozer",
"version": "1.0.1",
"description": "Simple tool to build your frontend.",
"main": "bin/buildozer.js",
"bin": {
"buildozer": "bin/buildozer.js"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"autoprefixer": "^10.4.0",
"browser-sync": "^2.27.7",
"chalk": "^4.1.2",
"copyfiles": "^2.4.1",
"cosmiconfig": "^7.0.1",
"fancy-log": "^1.3.3",
"glob": "^7.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-newer": "^1.4.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-stylelint": "^13.0.0",
"gulp-svg-sprite": "^1.5.0",
"gulp-terser": "^2.1.0",
"plugin-error": "^1.0.1",
"postcss": "^8.3.11",
"postcss-load-config": "^3.1.0",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"stylelint": "^14.0.1",
"through2": "^4.0.2",
"update-notifier": "^5.1.0",
"vinyl-sourcemaps-apply": "^0.2.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"rfs": "^9.0.6",
"xo": "^0.39.1",
"trim-newlines": "^3.0.1",
"set-value": "^4.0.1"
},
"scripts": {
"test": "npm-run-all lint unit-tests",
"unit-tests": "npm-run-all test-* --parallel",
"lint": "xo",
"test-default": "node bin/buildozer build --cwd=./test/default",
"test-css": "node bin/buildozer build --cwd=test/css",
"test-img": "node bin/buildozer build --cwd=test/img",
"test-autoprefixer": "node bin/buildozer build --disable-autoprefixer --cwd=test/autoprefixer",
"test-env": "node bin/buildozer build --env=development --cwd=test/env",
"test-copy": "node bin/buildozer build --cwd=test/copy",
"test-sass-module": "node bin/buildozer build --cwd=test/sass-module",
"test-config-search": "node bin/buildozer build --cwd=test/config-search",
"test-stylelint": "node bin/buildozer build --cwd=test/stylelint",
"test-eslint": "node bin/buildozer build --cwd=test/eslint",
"test-fails": "node test/fail-tests.js",
"diff-check": "node test/check-diff.js"
},
"files": [
"/lib",
"gulpfile.js"
],
"engines": {
"node": ">=12"
},
"author": "Martijn Cuppens <martijn.cuppens@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Intracto/buildozer.git"
},
"bugs": {
"url": "https://github.com/Intracto/buildozer/issues"
},
"homepage": "https://github.com/Intracto/buildozer#readme",
"xo": {
"space": true
}
}