This repository has been archived by the owner on Apr 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "generator-at-angular",
"version": "0.4.3",
"description": "Yeoman angular application generator thet uses Webpack, SASS, UI router, Karma and Jasmine for testing, and auto generated docs.",
"homepage": "http://a-tokyo.github.io/generator-at-angular/",
"author": {
"name": "Ahmed Tarek",
"email": "[email protected]",
"url": "http://github.com/a-tokyo",
"organization": "dreidev"
},
"contributors": [
{
"name": "Ahmed Tarek",
"email": "[email protected]",
"url": "http://github.com/a-tokyo",
"organization": "dreidev"
},
{
"name": "Clive Makamara",
"email": "[email protected]",
"url": "http://github.com/cmosh",
"organization": "dreidev"
}
],
"repository": {
"type": "git",
"url": "https://github.com/A-Tokyo/generator-at-angular.git"
},
"main": "generators/app/index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha",
"coverage": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha",
"coveralls": "npm run coverage -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"files": [
"generators/"
],
"keywords": [
"yeoman-generator",
"generator",
"sub-generator",
"architecture",
"angular",
"component",
"es6",
"es2015",
"es2016",
"es2017",
"babel",
"webpack",
"webpack2",
"testing",
"tests",
"karma",
"jasmine",
"sass",
"bootstrap",
"angular-material",
"angular-md",
"docs",
"documentation",
"auto-document",
"tokyo"
],
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"fs-extra": "^2.0.0",
"generator-git-init": "^1.1.3",
"js-beautify": "^1.6.8",
"json-query": "^2.2.0",
"jsonfile": "^2.4.0",
"lodash": "^4.16.1",
"mkdirp": "^0.5.1",
"yeoman-generator": "^0.22.5",
"yosay": "^1.2.1"
},
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"should": "^11.2.0",
"yeoman-test": "^1.6.0"
}
}