forked from flowingis/dustman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.64 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
{
"name": "dustman",
"version": "1.11.55",
"description": "A Gulp based front-end automation boilerplate that helps you to keep your builds clean",
"authors": [
{
"name": "Vittorio Vittori",
"email": "[email protected]"
},
{
"name": "Carla Soloperto",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/ideatosrl/dustman",
"keywords": [
"automate",
"automation",
"beautify",
"browser-sync",
"browsersync",
"build",
"css",
"engine",
"faker",
"front-end",
"html",
"http",
"javascript",
"js",
"less",
"prettify",
"sass",
"server",
"template",
"template-engine",
"theme",
"twig",
"vendor",
"watch",
"watcher"
],
"repository": {
"type": "git",
"url": "https://github.com/ideatosrl/dustman.git"
},
"main": "gulpfile.js",
"dependencies": {
"analyze-css": "^0.12.3",
"browser-sync": "^2.17.6",
"colour": "^0.7.1",
"csslint": "~0.10.0",
"del": "^2.2.2",
"execSync": "^1.0.2",
"faker": "^3.1.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-bower": "0.0.10",
"gulp-concat": "^2.6.1",
"gulp-connect": "^4.1.0",
"gulp-copy": "0.0.2",
"gulp-csslint": "^0.2.2",
"gulp-html-prettify": "0.0.1",
"gulp-less": "^3.3.0",
"gulp-load-plugins": "^1.4.0",
"gulp-prompt": "^0.1.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.0.0",
"gulp-sass-lint": "^1.3.2",
"gulp-sourcemaps": "^1.9.0",
"gulp-stylestats": "^0.8.3",
"gulp-symlink": "^2.1.2",
"gulp-twig": "^0.5.0",
"gulp-uglify": "^1.5.3",
"gulp-uglifycss": "1.0.6",
"js-yaml": "^3.7.0",
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.16.0",
"node-notifier": "^4.6.1",
"run-sequence": "^1.1.2",
"sass": ">=0.5.0",
"stylestats": "^6.3.0",
"twig": "^0.9.5"
},
"engines": {
"node": ">=5.4.1"
},
"bugs": {
"url": "https://github.com/ideatosrl/dustman/issues"
},
"scripts": {
"build-all": "rm -rf temp || false && rm -rf test/results || false && node build.js && ./node_modules/.bin/gulp && ./node_modules/.bin/gulp css && ./node_modules/.bin/gulp js && ./node_modules/.bin/gulp html && ./node_modules/.bin/gulp --config test/examples/dustman.twig.yml",
"build": "node build.js && ./node_modules/.bin/gulp",
"build-watch": "node build.js && ./node_modules/.bin/gulp watch",
"build-http": "node build.js && ./node_modules/.bin/gulp http",
"test": "node build.js && ./node_modules/.bin/gulp --config test/examples/dustman.twig.yml"
},
"devDependencies": {
"buildify": "^0.4.0"
}
}