forked from balderdashy/sails-generate-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 867 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
{
"name": "sails-generate-backend",
"version": "0.12.7",
"description": "Default generator for backend code files in new Sails projects. Creates the default contents of the `api/` and `config/` folders when you run `sails new` on the command line.",
"main": "lib/index.js",
"scripts": {
"test": "mocha"
},
"keywords": [
"backend",
"generator",
"sails",
"generate",
"plugin"
],
"author": "balderdashy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:balderdashy/sails-generate-backend.git"
},
"dependencies": {
"lodash": "~2.4.1",
"merge-defaults": ">=0.1.0"
},
"devDependencies": {
"sails-generate": "*",
"reportback": "*",
"fs-extra": "*"
},
"sailsGenerator": {
"type": "backend",
"behavior": "Core generator",
"sailsVersion": "~0.10.0"
}
}