-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
61 lines (43 loc) · 1.08 KB
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
{
"name": "fics_web_interface",
"version": "0.0.1",
"author": "Sonny Michaud <michaud.sonny@gmail.com> (https://github.com/sonnym)",
"description": "A web interface for interacting with the Free Internet Chess Server.",
"main": "lib/server.js",
"scripts": {
"start": "./node_modules/.bin/bower --config.interactive=false install && ./node_modules/.bin/gulp"
},
"repository": {
"type": "git",
"url": "git@github.com:sonnym/fics_web_interface"
},
"dependencies": {
"express": "*",
"bunyan": "*",
"ejs": "*",
"underscore": "*",
"sockjs": "*",
"fics": "sonnym/fics"
},
"devDependencies": {
"require-dir": "*",
"bower": "*",
"gulp": "*",
"vinyl-buffer": "*",
"vinyl-source-stream": "*",
"gulp-nodemon": "*",
"gulp-sass": "*",
"gulp-uglify": "*",
"gulp-sourcemaps": "*",
"gulp-ng-annotate": "*",
"gulp-angular-templatecache": "*",
"browserify": "*",
"watchify": "*",
"protractor": "*"
},
"engines": {
"node": ">= 0.12.0"
},
"license": "MIT",
"private": true
}