-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 886 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
{
"name": "sails-generate-angularjs",
"version": "1.0.4",
"description": "AngularJS page generator for SailsJS" ,
"main": "index.js",
"scripts": {
"test": "echo 'No further automated tests have been implemented for this generator yet.'",
"pretest": "npm run lint",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0"
},
"keywords": [
"angular",
"generator",
"sails",
"generate",
"plugin"
],
"author": "Erik Corona <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": ">=4.17.11"
},
"devDependencies": {
"eslint": "6.7.2"
},
"repository": {"type":"git","url":"[email protected]:ecorona/sails-generate-angularjs.git"},
"sailsGenerator": {
"type": "page",
"behavior": "Implements or overrides `sails generate page` with an AngularJS flavor page.",
"sailsVersion": "^1.2.0"
}
}