-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 863 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 863 Bytes
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
{
"name": "gulp-vapor",
"version": "1.1.0",
"repository": "mckomo/gulp-vapor",
"description": "Gulp task suite for Vapor web framework",
"keywords": [
"gulpplugin",
"gulp",
"vapor",
"hot-reaload"
],
"author": "Maciej Komorowski <mckomo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mckomo/gulp-vapor/issues"
},
"main": "distribution/index.js",
"dependencies": {
"gulp-util": "^3.0.7"
},
"devDependencies": {
"gulp": "^3.9.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"sinon": "^1.17.4"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "babel scripts --presets babel-preset-es2015 --out-dir distribution",
"prepublish": "npm run build"
}
}