-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 939 Bytes
/
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
{
"name": "generator-composer",
"version": "3.0.1",
"license": "MIT",
"description": "A generator for Yeoman that provides a boilerplate for a PHP Composer project",
"keywords": [
"yeoman-generator",
"php",
"composer",
"phpdoc",
"phpunit",
"phplint",
"phpcpd",
"travis",
"packagist"
],
"author": {
"name": "t1st3",
"email": "[email protected]",
"url": "https://github.com/t1st3"
},
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/t1st3/generator-composer.git"
},
"scripts": {
"pretest": "xo test/* app/index.js",
"test": "mocha"
},
"dependencies": {
"figlet": "^1.2.3",
"update-notifier": "^4.0.0",
"yeoman-generator": "^4.0.1"
},
"devDependencies": {
"mocha": "^7.0.1",
"xo": "^0.25.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"engines": {
"node": ">=8"
}
}