-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.11 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
{
"name": "modcolle",
"version": "0.3.1",
"main": "index.js",
"author": "MakeMEK",
"license": "Apache-2.0",
"private": true,
"description": "A proxy server for playing Kancolle",
"repository": {
"type": "git",
"url": "git://github.com/makemek/Modcolle.git"
},
"bin": {
"mocha": "./node_modules/mocha/bin/mocha",
"eslint": "./node_modules/.bin/eslint"
},
"nyc": {
"exclude": [
"gulpfile.js"
]
},
"scripts": {
"build": "gulp",
"prestart": "npm run build",
"start": "pm2 start process.yml",
"dev": "npm run build && gulp browser-sync",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint src/**/*.js test/**/*.js bin/**",
"utest": "mocha",
"pretest": "npm run build",
"test": "npm run eslint && npm run utest"
},
"dependencies": {
"body-parser": "1.17.2",
"express": "4.15.2",
"express-handlebars": "3.0.0",
"passport": "0.3.2",
"passport-local": "1.0.0",
"pino": "4.6.0",
"request": "2.81.0",
"request-promise": "4.2.1",
"tough-cookie": "2.3.2",
"url-join": "2.0.2",
"url-parse": "1.1.9",
"validator": "7.0.0"
},
"devDependencies": {
"app-root-path": "2.0.1",
"async": "2.4.1",
"autoprefixer": "7.1.1",
"babel": "6.23.0",
"babel-preset-env": "1.5.2",
"browser-sync": "2.18.12",
"browserify": "14.3.0",
"cheerio": "0.22.0",
"coveralls": "2.13.1",
"eslint": "3.19.0",
"eslint-config-modcolle": "0.1.1",
"fallbackjs": "1.1.8",
"font-awesome": "4.7.0",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-clean-css": "3.4.1",
"gulp-nodemon": "2.2.1",
"gulp-postcss": "7.0.0",
"gulp-rename": "1.2.2",
"gulp-uglify": "3.0.0",
"gulp-util": "3.0.8",
"js-yaml": "3.8.4",
"mocha": "3.4.1",
"nock": "9.0.13",
"nodemon": "1.11.0",
"nyc": "11.0.2",
"should": "11.2.1",
"sinon": "2.3.4",
"slash": "1.0.0",
"supertest": "3.0.0",
"supertest-as-promised": "4.0.2",
"uglify": "0.1.5",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0"
}
}