-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
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
{
"name": "generator-polymer-init-polymer-3-element",
"version": "0.0.1",
"description": "An easy way to spin up Polymer3 elements ",
"homepage": "",
"author": {
"name": "Matteo Hertel",
"email": "info@matteohertel.com",
"url": "https://blog.matteohertel.com"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"",
"yeoman-generator"
],
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
},
"rules": {
"capitalized-comments": "off"
}
},
"repository": "https://github.com/matteo-hertel/generator-polymer-init-polymer-3-element",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp test",
"test:watch": "gulp watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"license": "MIT",
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-xo-space": "^0.16.0",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-exclude-gitignore": "^1.2.0",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^4.3.1",
"gulp-nsp": "^2.4.2",
"gulp-plumber": "^1.1.0",
"semantic-release": "^7.0.2",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.7.0"
},
"dependencies": {
"lodash": "^4.17.4",
"yeoman-generator": "^2.0.0",
"yosay": "^2.0.1"
}
}