-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 2.15 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
{
"name": "generator-sf",
"version": "0.4.0",
"description": "Yeoman generator to scaffold Symfony PHP apps with full featured frontend tooling",
"homepage": "",
"author": {
"name": "Ben Zörb",
"email": "ben@sommerlaune.com",
"url": "http://sommerlaune.com"
},
"files": [
"generators",
"lib"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"symfony",
"php",
"grunt",
"browsersync",
"offline",
"service-worker"
],
"engines": {
"node": ">=6"
},
"dependencies": {
"bluebird": "3.5.0",
"chalk": "^2.0.1",
"cross-spawn": "^5.1.0",
"decompress": "^4.2.0",
"download": "^6.2.5",
"find-up": "2.1.0",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
"globby": "6.1.0",
"got": "^7.1.0",
"indent-string": "^3.1.0",
"lodash": "4.17.4",
"path-is-absolute": "^1.0.1",
"resolve": "1.3.3",
"wsfp": "0.0.7",
"xdg-basedir": "3.0.0",
"yamljs": "^0.3.0",
"yeoman-generator": "1.1.1",
"yosay": "2.0.0"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"debug": "^2.6.8",
"eslint": "^4.2.0",
"eslint-config-xo-space": "^0.16.0",
"gulp": "3.9.1",
"gulp-line-ending-corrector": "1.0.1",
"gulp-mocha": "^4.3.0",
"gulp-nsp": "2.4.2",
"gulp-plumber": "1.1.0",
"nyc": "^11.0.3",
"path-exists": "3.0.0",
"run-sequence": "^2.0.0",
"shelljs": "^0.7.7",
"vinyl-source-stream": "1.1.0",
"xo": "^0.18.2",
"yarn": "^0.27.5",
"yeoman-assert": "3.0.0",
"yeoman-test": "^1.7.0"
},
"repository": "bezoerb/generator-sf",
"scripts": {
"prepare-fixtures": "gulp fixtures",
"prepublish": "gulp prepublish",
"test": "npm run prepare-fixtures && xo && nyc gulp test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"license": "MIT",
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true,
"node": true
}
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
],
"rules": {
"object-shorthand": 0
},
"ignores": [
"generators/**/templates/**/*.js"
]
}
}