-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.43 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
{
"name": "bloodborne-builder",
"version": "0.0.1",
"description": "",
"main": "index.coffee",
"engines": {
"node": "0.12.x"
},
"scripts": {
"preinstall": "bash ./scripts/install_dependencies.sh",
"postinstall": "coffee ./scripts/postinstall.coffee",
"pretest": "bash ./scripts/compile.sh",
"test": "./node_modules/.bin/mocha",
"start": "./node_modules/.bin/gulp server --development"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel": "^5.0.8",
"babelify": "^6.0.1",
"base64-url": "^1.2.1",
"basic-auth-connect": "^1.0.0",
"bower": "^1.4.0",
"browserify": "^9.0.3",
"browserify-shim": "^3.8.3",
"coffee-script": "^1.9.1",
"coffeeify": "^1.0.0",
"colors": "^1.0.3",
"del": "^1.1.1",
"dotenv": "^1.0.0",
"ejs": "^2.3.1",
"express": "^5.0.0-alpha.1",
"faker": "^2.1.2",
"find-port": "^1.0.1",
"gulp": "^3.8.11",
"gulp-bower": "0.0.10",
"gulp-browserify": "^0.5.1",
"gulp-cached": "^1.0.4",
"gulp-coffee": "^2.3.1",
"gulp-ejs": "^1.1.0",
"gulp-jade": "^1.0.0",
"gulp-livereload": "^3.8.0",
"gulp-minify-css": "^1.0.0",
"gulp-nodemon": "^2.0.2",
"gulp-plumber": "^1.0.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^1.3.3",
"gulp-sass-bulk-import": "^0.2.0",
"gulp-sourcemaps": "^1.5.1",
"gulp-stylus": "^2.0.1",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.4",
"gulp-watch": "^4.2.2",
"hbs": "^3.0.1",
"jquery": "^2.1.3",
"js-yaml": "^3.2.7",
"marked": "^0.3.3",
"node-bourbon": "^4.2.1-beta1",
"nodemon": "^1.3.7",
"run-command": "^1.0.2",
"run-sequence": "^1.0.2",
"serve-favicon": "^2.2.0",
"stylus": "^0.50.0",
"sumi-e": "^0.1.4",
"underscore": "^1.8.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"win-spawn": "^2.0.0",
"yargs": "^3.7.0"
},
"devDependencies": {
"chai": "^2.2.0",
"mocha": "^2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/itsthatguy/firepit.git"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"angular": "./bower_components/angular/angular.js",
"angular-ui-router": "./bower_components/angular-ui-router/release/angular-ui-router.js"
},
"browserify-shim": {
"angular": {
"depends": [
"jquery:$"
]
},
"angular-ui-router": {
"depends": "angular"
}
}
}