-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
106 lines (106 loc) · 3.08 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
{
"name": "aegir",
"version": "10.0.0",
"description": "JavaScript project management",
"main": "index.js",
"browser": {
"fs": false
},
"bin": {
"aegir-lint": "bin/lint",
"aegir-build": "bin/build",
"aegir-test": "bin/test",
"aegir-release": "bin/release",
"aegir-coverage": "bin/coverage",
"aegir-docs": "bin/docs"
},
"scripts": {
"lint": "bin/lint",
"release": "bin/release no-build",
"release-minor": "bin/release no-build --type minor",
"release-major": "bin/release no-build --type major"
},
"keywords": [
"webpack",
"standard",
"lint",
"build"
],
"author": "Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"license": "MIT",
"dependencies": {
"args-parser": "^1.0.2",
"browserify-zlib-next": "^1.0.1",
"chalk": "^1.1.3",
"clean-documentation-theme": "^0.4.2",
"codecov": "^1.0.1",
"conventional-github-releaser": "^1.1.3",
"coveralls": "^2.11.15",
"detect-node": "^2.0.3",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"gulp": "^3.9.1",
"gulp-bump": "^2.6.1",
"gulp-conventional-changelog": "^1.1.0",
"gulp-documentation": "^3.1.0",
"gulp-eslint": "^3.0.1",
"gulp-filter": "^5.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-git": "^1.12.0",
"gulp-mocha": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-size": "^2.1.0",
"gulp-spawn-mocha": "^3.1.0",
"gulp-tag-version": "^1.3.0",
"gulp-uglify": "^2.0.1",
"gulp-util": "^3.0.8",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-own-reporter": "^1.1.2",
"karma-mocha-webworker": "^1.3.0",
"karma-sauce-launcher": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"lodash.camelcase": "^4.3.0",
"lodash.includes": "^4.3.0",
"lodash.upperfirst": "^4.3.1",
"mocha": "^3.2.0",
"path-exists": "^3.0.0",
"pretty-hrtime": "^1.0.3",
"pump": "^1.0.2",
"rimraf": "^2.5.4",
"run-sequence": "^1.2.2",
"semver": "^5.3.0",
"signal-exit": "^3.0.2",
"stream-http": "^2.6.3",
"transform-loader": "^0.2.3",
"uglify-js": "github:mishoo/UglifyJS2#harmony",
"webpack": "^2.1.0-beta.28",
"webpack-merge": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dignifiedquire/aegir"
},
"engines": {
"node": ">=4.0.0"
},
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"Dmitriy Ryajov <dryajov@gmail.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Haad <haadcode@users.noreply.github.com>",
"JGAntunes <j.goncalo.antunes@gmail.com>",
"Jakub Sztandera <kubuxu@protonmail.ch>",
"Stephen Whitmore <stephen.whitmore@gmail.com>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"greenkeeperio-bot <support@greenkeeper.io>",
"npmcdn-to-unpkg-bot <npmcdn-to-unpkg-bot@users.noreply.github.com>"
]
}