-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.15 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
{
"name": "generator-pwa",
"version": "0.2.0",
"description": "Progressive Webapp generator",
"homepage": "https://github.com/hemanth/generator-pwa",
"author": {
"name": "Hemanth.HM",
"email": "[email protected]",
"url": "https://h3manth.com"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"pwa",
"progressive",
"webapp"
],
"dependencies": {
"chalk": "^1.1.3",
"yeoman-generator": "^0.22.5",
"yeoman-test": "^1.1.0",
"yosay": "^1.1.0"
},
"devDependencies": {
"ava": "^0.14.0",
"eslint-config-xo-space": "^0.11.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.10.4",
"gulp-mocha": "^2.2.0",
"gulp-nsp": "^2.4.0",
"gulp-plumber": "^1.1.0",
"pify": "^2.3.0",
"yeoman-assert": "^2.1.2"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "hemanth/generator-pwa",
"scripts": {
"prepublish": "gulp prepublish",
"test": "ava"
},
"license": "MIT",
"engines": {
"node": ">=4"
}
}