-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
79 lines (79 loc) · 1.56 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
{
"name": "gulp-unzip",
"version": "1.1.0",
"description": "gulp plugin for unzip",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/terrierscript/gulp-unzip.git"
},
"scripts": {
"test": "mocha",
"lint": "standard",
"lint:fix": "standard --fix"
},
"keywords": [
"gulpplugin",
"unzip",
"zip",
"package"
],
"author": {
"name": "terrierscript",
"url": "https://github.com/terrierscript"
},
"contributors": [
{
"name": "Joey Cozza",
"url": "https://github.com/joeycozza"
},
{
"name": "Joe Pettersson",
"url": "https://github.com/Joe8Bit"
},
{
"name": "Erik Vold",
"url": "https://github.com/erikvold"
},
{
"name": "hami",
"url": "https://github.com/hami-jp"
},
{
"name": "Selwyn",
"url": "https://github.com/Siilwyn"
},
{
"name": "João Moreno",
"url": "https://github.com/joaomoreno"
},
{
"name": "Evan Oxfeld",
"url": "https://github.com/EvanOxfeld"
},
{
"name": "Ulises Gascón",
"url": "https://github.com/ulisesGascon"
}
],
"license": "BSD-2-Clause",
"dependencies": {
"unzipper": "0.9.15",
"vinyl": "2.2.0",
"vinyl-buffer": "1.0.1"
},
"devDependencies": {
"assert-plus": "1.0.0",
"gulp-concat": "2.6.1",
"husky": "2.3.0",
"minimatch": "3.0.4",
"mocha": "5.2.0",
"standard": "12.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}