forked from tcorral/Design-Patterns-in-Javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "design-patterns-in-javascript",
"version": "2.0.0",
"description": "A set of design patters to use in Javascript with ES2015 a.k.a ES6",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcorral/Design-Patterns-in-Javascript.git"
},
"keywords": [
"design",
"patterns",
"js",
"es2015",
"es6"
],
"author": "Tomas Corral <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tcorral/Design-Patterns-in-Javascript/issues"
},
"homepage": "https://github.com/tcorral/Design-Patterns-in-Javascript#readme",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-plugin-transform-es2015-modules-amd": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.0",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-uglify": "^1.5.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
}
}