-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
124 lines (124 loc) · 2.99 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "generator-ngx-library",
"version": "6.2.1",
"description": "Yeoman generator to bootstrap Angular library creation and publication, with integrated demo app, continuous integration/deployment system, code coverage status and much more!",
"license": "MIT",
"keywords": [
"yeoman-generator",
"yeoman",
"generator",
"angularjs",
"angular",
"plugin",
"component",
"directive",
"library",
"project",
"quickstart",
"initializer",
"starter"
],
"bugs": "https://github.com/tinesoft/generator-ngx-library/issues",
"author": {
"name": "Tine Kondo",
"email": "kondotine@gmail.com",
"url": "https://github.com/tinesoft"
},
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/tinesoft/generator-ngx-library.git"
},
"scripts": {
"test": "jest",
"check-appveyor": "appveyor-status --project=tinesoft/generator-ngx-library --branch=master --wait || echo 'Not yet passing'",
"check-travis": " travis-status --repo=tinesoft/generator-ngx-library --branch=master --fail-pending || echo 'Not yet passing'"
},
"dependencies": {
"del": "3.0.0",
"chalk": "2.4.1",
"mkdirp": "0.5.1",
"yeoman-generator": "2.0.5",
"yosay": "2.0.2"
},
"devDependencies": {
"@types/jest": "22.2.3",
"@types/yeoman-generator": "2.0.3",
"ansi-colors": "2.0.1",
"appveyor-status": "2.0.2",
"commitplease": "3.2.0",
"conventional-github-releaser": "2.0.2",
"eslint": "4.19.0",
"eslint-config-xo-space": "0.18.0",
"fancy-log": "1.3.2",
"fs-extra": "6.0.1",
"glob": "^7.1.2",
"greenkeeper-lockfile": "1.15.0",
"gulp": "3.9.1",
"gulp-bump": "3.1.1",
"gulp-conventional-changelog": "1.1.24",
"gulp-coveralls": "0.1.4",
"gulp-eslint": "4.0.2",
"gulp-git": "2.6.0",
"gulp-nsp": "2.4.2",
"gulp-plumber": "1.1.0",
"gulp-shell": "0.6.5",
"jest": "22.0.5",
"lodash": "4.17.10",
"markdown-toc": "1.2.0",
"plugin-error": "1.0.1",
"run-sequence": "2.2.1",
"semver": "5.5.0",
"through2": "2.0.3",
"travis-status": "2.0.0",
"yargs": "11.0.0",
"yeoman-assert": "3.1.1",
"yeoman-test": "1.7.1"
},
"commitplease": {
"style": "angular",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"demo"
],
"scope": "\\S+.*"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.js"
],
"testPathIgnorePatterns": [
"templates"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"app/**/*.{js,jsx}",
"!app/templates/**"
],
"coverageDirectory": "coverage",
"mapCoverage": true,
"coverageReporters": [
"lcov",
"text"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/integrations/",
"/recipes/",
"/assets/",
"/dist/"
]
},
"engines": {
"node": ">=6.0.0"
}
}