-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 3.07 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "sockrpg",
"version": "0.1.0",
"description": "SockRPG: A Forum built by role players, for roleplayers",
"repository": "https://github.com/SockDrawer/SockRPG",
"license": "MIT",
"author": "Accalia Elementia <[email protected]> (https://github.com/AccaliaDeElementia)",
"contributors": [
"RaceProUK <[email protected]> (https://github.com/RaceProUK)",
"Yamikuronue <yamikuronue> (https://github.com/yamikuronue)",
"Kaelas17 <Kaelas17> (https://github.com/Kaelas17)",
"Cloak15 <Cloak15> (https://github.com/Cloak15)"
],
"main": "./src/server.js",
"bin": "./src/server.js",
"bugs": {
"url": "https://github.com/SockDrawer/SockRPG/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=8.0"
},
"dependencies": {
"async": "^2.0.1",
"bcrypt": "^3.0.2",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"debug": "^4.0.0",
"express": "^4.13.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.1",
"express-validator": "^5.2.0",
"knex": "^0.15.1",
"lodash.merge": "^4.6.1",
"moment": "^2.22.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sqlite3": "^4.0.4"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.0",
"husky": "^1.0.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"supertest": "^3.1.0",
"wdio-mocha-framework": "^0.6.1",
"wdio-phantomjs-service": "^0.2.2",
"wdio-selenium-standalone-service": "0.0.11",
"webdriverio": "^4.13.1"
},
"scripts": {
"start": "node ./src/server.js",
"lint": "eslint .",
"preunitTests": "npm run lint",
"unitTests": "nyc mocha --recursive ./test/unit/ -R dot",
"integrationTests": "mocha --recursive -R dot ./test/integration/",
"pretest": "npm run unitTests",
"test": "npm run integrationTests",
"systemTest": "wdio wdio.conf.js",
"mocha": "mocha -R spec --recursive ./test/unit/",
"commit": "git-cz",
"postmocha": "npm run integrationTests",
"prepush": "npm test",
"postmerge": "npm install",
"postrewrite": "npm install",
"postcheckout": "npm install",
"knex": "knex"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"coverage/**",
"test/**",
"**/node_modules/**",
"static/**",
"mockups/**",
"*.js",
"migrations/**"
],
"per-file": true,
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
},
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 95,
"reporter": [
"lcov",
"text",
"text-summary"
],
"cache": true,
"all": true
}
}