This repository has been archived by the owner on May 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 2.18 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": "@pixel2html/generator-frontend",
"description": "Pixel2HTML Boilerplate Generator",
"version": "2.4.3",
"repository": "https://github.com/Pixel2HTML/pixel2html-generator",
"license": "MIT",
"author": {
"name": "Juan Manuel Garcia Olivares",
"email": "[email protected]"
},
"contributors": [
{
"name": "Miguel Palau",
"email": "[email protected]",
"url": "https://www.mpz.im/"
},
{
"name": "Diego Peralta",
"url": "https://diego.earth/"
},
{
"name": "Bruno Belcastro",
"url": "https://github.com/argen"
},
{
"name": "Matt Ginn",
"url": "http://matt.codes/"
},
{
"name": "Juan Di Nella",
"url": "https://github.com/juandinella"
},
{
"name": "Tomas Peralta",
"url": "https://github.com/peraltatomas"
}
],
"keywords": [
"yeoman-generator"
],
"scripts": {
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"pretest": "npm run lint",
"test": "mocha --timeout 5000 --require babel-register",
"postversion": "git push; git push --tags",
"commit": "git-cz"
},
"main": "app/index.js",
"dependencies": {
"@pixel2html/eslint-config": "^1.2.0",
"chalk": "^2.3.1",
"eslint": "^4.18.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^5.0.0",
"gulp-eslint": "^4.0.2",
"gulp-filter": "^5.1.0",
"gulp-jsbeautifier": "^2.1.2",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"path": "^0.12.7",
"update-notifier": "^2.3.0",
"wiredep": "^4.0.0",
"yeoman-generator": "^2.0.3"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"commitizen": "^2.9.6",
"emoji-cz": "^0.3.0",
"mocha": "^5.0.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"eslintConfig": {
"extends": "@pixel2html/eslint-config",
"env": {
"browser": true,
"node": true,
"mocha": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/emoji-cz"
}
}
}