-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 818 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 818 Bytes
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
{
"name": "generator-drupal-module",
"version": "1.0.1",
"description": "Generate a module folder with files for Drupal 7",
"license": "MIT",
"main": "app/index.js",
"repository": "andeersg/generator-drupal-module",
"author": {
"name": "Anders Grendstadbakk",
"email": "",
"url": "https://github.com/andeersg"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"test": "NODE_ENV=test istanbul cover -- _mocha"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator"
],
"dependencies": {
"chalk": "^1.0.0",
"mkdirp": "^0.5.1",
"yeoman-assert": "^2.2.1",
"yeoman-generator": "^0.24.1",
"yeoman-test": "^1.4.0",
"yosay": "^1.1.1"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.4.3",
"mocha": "3.1.2"
}
}