-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.5 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
{
"name": "pipeline-minify-js",
"version": "0.1.0-SNAPSHOT",
"description": "Gulp pipeline to minify and optionally concatenate js files",
"author": "Juan P. Osorio <[email protected]> (https://github.com/jpoo90)",
"contributors": [
{
"name": "Owen Buckley",
"email": "[email protected]"
},
{
"name": "Chris Sharon",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha test/index.spec.js -w"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "ssh://[email protected]:kenzanmedia/pipeline-minify-js.git"
},
"keywords": [
"Gulp",
"Tools",
"Keystone",
"Pipeline",
"Minify"
],
"preferGlobal": false,
"private": false,
"publishConfig": {
"registry": ""
},
"engines": {
"node": ">=0.10.3",
"npm": ">=1.0.20"
},
"analyze": true,
"license": "ISC",
"dependencies": {
"chai": "3.3.0",
"gulp": "3.9.0",
"gulp-concat": "2.6.0",
"gulp-if": "2.0.0",
"gulp-load-plugins": "0.10.0",
"gulp-plumber": "1.0.1",
"gulp-print": "2.0.1",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.4.1",
"lazypipe": "1.0.1",
"mocha": "2.3.3",
"pipeline-handyman": "git+ssh://[email protected]/kenzanmedia/pipeline-handyman.git#0.1.0",
"pipeline-validate-js": "git+ssh://[email protected]/kenzanmedia/pipeline-validate-js.git#0.1.0",
"yargs": "3.26.0"
},
"devDependencies": {
"path": "0.12.7",
"stream-assert": "2.0.3"
}
}