-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
77 lines (77 loc) · 1.83 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
{
"name": "gulp-debian",
"version": "0.3.2",
"description": "Gulp plug-in to create a Debian package",
"main": "index.js",
"scripts": {
"json2yaml": "gulp json2yaml",
"test": "gulp deb-inline && gulp deb-json && gulp deb-yaml && gulp test",
"dpkg-install": "gulp install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stpettersens/gulp-debian.git"
},
"keywords": [
"gulpplugin",
"debian",
"deb",
"package"
],
"author": "Sam Saint-Pettersen <[email protected]>",
"contributors": [
{
"name": "Oliver Skånberg-Tippen",
"url": "https://github.com/oskanberg"
},
{
"name": "Olaf Radicke",
"url": "https://github.com/OlafRadicke"
},
{
"name": "Míguel Ángel Mulero Martínez",
"url": "https://github.com/McGiverGim"
},
{
"name": "Alexey Lukomsky",
"url": "https://github.com/lucomsky"
},
{
"name": "haslinghuis",
"url": "https://github.com/haslinghuis"
},
{
"name": "Dominic Clifton",
"url": "https://github.com/hydra"
},
{
"name": "Gregory Marco",
"url": "https://github.com/CatturaGreg"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stpettersens/gulp-debian/issues"
},
"homepage": "https://github.com/stpettersens/gulp-debian#readme",
"dependencies": {
"find": "^0.2.8",
"fs-extra": "^5.0.0",
"gulp-util": "^3.0.8",
"through2": "^2.0.1",
"title-case": "^2.1.0"
},
"devDependencies": {
"chalk": "^2.3.0",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-data": "^1.2.1",
"gulp-nodeunit-runner": "^0.2.2",
"gulp-rimraf": "^0.2.0",
"gulp-sequence": "^1.0.0",
"gulp-standard": "^10.1.1",
"gulp-wait": "0.0.2",
"js-yaml": "^3.7.0",
"shelljs": "^0.8.0"
}
}