-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "js-101-workshop",
"version": "1.0.0",
"description": "Beginnings in JavaScript",
"main": "app/index.js",
"engines": {
"node": "4.2.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node_modules/.bin/gulp",
"postinstall": "node_modules/.bin/gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandiegojs/js-101-workshop.git"
},
"author": "SanDiego.js Community <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandiegojs/js-101-workshop/issues"
},
"homepage": "https://github.com/sandiegojs/js-101-workshop#readme",
"keywords": [
"vanilla-js",
"javascript",
"workshop",
"sandiego"
],
"dependencies": {
"babel-core": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.4.1",
"express": "^4.13.3",
"glob": "^6.0.4",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-live-server": "0.0.29",
"gulp-minify": "0.0.5",
"gulp-minify-css": "^1.2.3",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"mocha": "^2.3.4",
"require-dir": "^0.3.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}