-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
39 lines (39 loc) · 915 Bytes
/
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
{
"name": "gulp-es6-webpack-example",
"version": "0.0.1",
"description": "Sample setup with Gulp, Babel, Mocha and Webpack",
"main": "src/main.js",
"scripts": {
"build": "gulp",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiagorg/gulp-es6-webpack-example.git"
},
"keywords": [
"gulp",
"es6",
"babel",
"webpack",
"mocha",
"chai"
],
"author": "Tiago Garcia",
"license": "ISC",
"bugs": {
"url": "https://github.com/tiagorg/gulp-es6-webpack-example/issues"
},
"homepage": "https://github.com/tiagorg/gulp-es6-webpack-example#readme",
"devDependencies": {
"babel-core": "^5.8.25",
"chai": "^3.3.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.3.0",
"gulp-mocha": "^2.1.3",
"gulp-util": "^3.0.7",
"mocha": "^2.3.3",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
}
}