-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "generator-angular-lazy",
"version": "0.6.7",
"description": "Yeoman generator for creating Angular applications which lazy load components as needed at runtime. Based on SystemJS, JSPM, Babel and Gulp.",
"repository": {
"type": "git",
"url": "git://github.com/matoilic/generator-angular-lazy.git"
},
"keywords": [
"yeoman-generator",
"angular",
"angularjs",
"systemjs",
"jspm",
"app",
"scaffold"
],
"author": "Mato Ilic <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/matoilic/generator-angular-lazy/issues"
},
"homepage": "https://github.com/matoilic/generator-angular-lazy#readme",
"dependencies": {
"glob": "~7.1.1",
"lodash": "~4.17.4",
"underscore.string": "~3.3.4",
"yeoman-generator": "~1.0.1"
},
"engines": {
"node": ">=4.2.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"eslint": "~3.13.0",
"eslint-config-angular-lazy": "^0.1.1",
"fs-extra": "^1.0.0",
"jasmine": "~2.5.2",
"jasmine-spec-reporter": "^3.1.0",
"npm-check": "^5.4.0",
"semver": "^5.3.0",
"yeoman-assert": "~2.2.1",
"yeoman-test": "~1.6.0",
"yo": "^1.8.5"
},
"scripts": {
"prepublish": "node scripts/prepublish.js",
"test": "eslint . && node jasmine-runner.js"
}
}