-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "generator-mario",
"version": "1.0.1",
"description": "Yeoman marionette generator",
"license": "",
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Accenture/generator-mario.git"
},
"author": {
"name": "Matthew D. Lancaster",
"email": "[email protected]",
"url": "https://www.accenture.com/us-en"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"pretest": "jshint generators test && jscs generators test",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Accenture/generator-mario/issues"
},
"homepage": "https://github.com/Accenture/generator-mario#readme",
"files": [
"generators"
],
"keywords": [
"yeoman",
"generator",
"marionette",
"yeoman-generator"
],
"dependencies": {
"ast-query": "^1.0.1",
"chalk": "^1.0.0",
"fs-extra": "^0.22.1",
"glob": "^5.0.15",
"lodash": "^3.9.3",
"yeoman-generator": "^0.21.1",
"yosay": "^1.0.2"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-fs": "^0.1.0",
"escodegen": "^1.7.0",
"esprima": "^2.6.0",
"istanbul": "^0.3.18",
"jscs": "^2.1.1",
"jshint": "^2.8.0",
"mocha": "*",
"sinon": "^1.15.4"
}
}