This repository has been archived by the owner on Jun 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
99 lines (99 loc) · 2.4 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
{
"name": "generator-modern-web-dev",
"version": "0.5.5",
"description": "Modern Web Development Yeoman Generator: Gulp, ES2015, TypeScript, Angular 2, SASS, Minification, Bundling, Sourcemaps, ...",
"author": {
"name": "Sebastien Dubois",
"email": "[email protected]",
"url": "https://www.dsebastien.net/"
},
"contributors": [],
"homepage": "https://npmjs.com/package/generator-modern-web-dev",
"private": false,
"license": "MIT",
"bugs": "https://github.com/dsebastien/modernWebDevGenerator/issues",
"repository": {
"type": "git",
"url": "[email protected]:dsebastien/modernWebDevGenerator.git"
},
"keywords": [
"yeoman-generator",
"yeoman",
"generator",
"web",
"frontend",
"gulp",
"html5",
"typescript",
"es6",
"es2015",
"es2016",
"angular",
"angular2",
"angular 2",
"sass",
"boilerplate",
"create",
"init"
],
"dependencies": {
"yeoman-generator": "^0.23.0",
"yosay": "^1.1.0",
"chalk": "^1.1.3",
"babel-runtime": "^6.6.1",
"update-notifier": "^0.7.0",
"string-length": "^1.0.1"
},
"devDependencies": {
"yeoman-assert": "^2.1.1",
"yeoman-test": "^1.1.0",
"babel-core": "^6.7.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.0",
"gulp-debug": "^2.1.2",
"gulp-help": "^1.6.1",
"gulp-if": "^2.0.0",
"gulp-jscs": "^3.0.2",
"gulp-jscs-stylish": "^1.3.0",
"jshint": "^2.9.1",
"gulp-jshint": "^2.0.0",
"gulp-nice-package": "^1.1.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-size": "^2.1.0",
"gulp-util": "^3.0.7",
"jshint-stylish": "^2.1.0",
"mocha": "^2.4.5",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.5"
},
"main": "app/index.js",
"files": [
"app"
],
"directories": {
"lib": "./app"
},
"engines": {
"node": ">=4.2.6",
"npm": ">=3.7.3"
},
"scripts": {
"clean": "gulp clean",
"gulp": "gulp -- ",
"prebuild": "gulp clean",
"build": "gulp",
"pretest": "npm run build",
"test": "mocha",
"update": "npm install --no-optional",
"outdated": "npm outdated",
"help": "gulp help",
"setup": "npm install --no-optional",
"prepublish": "npm test && npm run build"
}
}