-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.44 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
{
"name": "generator-barephp",
"version": "1.0.1",
"description": "PHP project scaffold with lots of integrations",
"keywords": [
"yeoman-generator",
"gulp",
"grunt",
"php",
"composer",
"packagist",
"phpunit",
"phplint",
"phpcs",
"php-cs-fixer",
"phpmd",
"phpmnd",
"phpcpd",
"travis",
"coveralls",
"scrutinizer",
"styleci",
"vagrant",
"homestead",
"phpmyadmin",
"browsersync"
],
"homepage": "https://github.com/juliangut/generator-barephp",
"license": "BSD-3-Clause",
"bugs": "https://github.com/juliangut/generator-barephp/issues",
"author": {
"name": "Julián Gutiérrez",
"email": "[email protected]",
"url": "http://juliangut.com"
},
"repository": {
"type": "git",
"url": "git://[email protected]/juliangut/generator-barephp.git"
},
"main": "app/index.js",
"scripts": {
"test": "mocha"
},
"dependencies": {
"chalk": "^1.1.0",
"mkdirp": "^0.5.1",
"shelljs": "^0.5.3",
"sprintf-js": "^1.0.3",
"underscore.string": "^3.1.1",
"util": "^0.10.3",
"validator": "^4.7.1",
"yeoman-generator": "^0.21.0",
"yo": ">=1.0.0",
"yosay": "^1.0.5"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-jscs": "^3.0.0",
"gulp-jshint": "^2.0.0",
"jshint-stylish": "^2.2.0",
"mocha": "^2.2.0",
"run-sequence": "^1.2.0"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.2.10"
}
}