-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
91 lines (91 loc) · 2.48 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
88
89
90
91
{
"name": "generator-ng-poly",
"version": "0.0.0-semantic-release",
"description": "Yeoman generator for modular AngularJS apps with Gulp and optional Polymer support",
"license": "MIT",
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dustinspecker/generator-ng-poly.git"
},
"author": {
"name": "Dustin Specker",
"email": "DustinSpecker@DustinSpecker.com",
"url": "https://github.com/dustinspecker"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "gulp test"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"angular",
"gulp",
"jasmine",
"mocha",
"protractor",
"polymer"
],
"dependencies": {
"babel-polyfill": "^6.1.19",
"babel-runtime": "^6.1.18",
"chalk": "^1.0.0",
"count-spaces": "^1.0.1",
"find-up": "^1.0.0",
"func-has-param": "^1.1.1",
"get-yo-rc-path": "^1.0.1",
"indent-string": "^2.0.0",
"lodash": "^4.0.0",
"mkdirp": "^0.5.0",
"newline-regex": "^0.2.0",
"ng-add-dep": "^0.3.0",
"ng-mod-get-names": "^1.0.0",
"path-exists": "^3.0.0",
"pify": "^2.2.0",
"recursive-readdir": "^2.0.0",
"remove-trailing-slash": "^0.1.0",
"underscore.string": "^3.0.1",
"update-notifier": "^0.7.0",
"yeoman-generator": "^0.23.1",
"yosay": "^1.0.0"
},
"devDependencies": {
"a": "^1.0.1",
"babel-core": "^6.1.19",
"babel-eslint": "^6.0.0",
"babel-plugin-syntax-async-functions": "^6.1.18",
"babel-plugin-transform-regenerator": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.2.0",
"coveralls": "^2.11.1",
"cz-conventional-changelog": "^1.1.5",
"del": "^2.0.0",
"eslint-config-dustinspecker": "^1.0.0",
"eslint-formatter-pretty": "^0.2.0",
"eslint-plugin-new-with-error": "^1.1.0",
"eslint-plugin-no-use-extend-native": "^0.3.1",
"eslint-plugin-xo": "^0.4.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.0",
"gulp-eslint": "^2.0.0",
"gulp-istanbul": "^0.10.0",
"gulp-mocha": "^2.0.0",
"proxyquire": "^1.0.1",
"semantic-release": "^4.3.5",
"sinon": "^1.10.3",
"yeoman-assert": "^2.1.1",
"yeoman-test": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}