-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 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
{
"name": "socksite",
"version": "0.0.1",
"description": "A site to track incidents of server cooties on http://what.thedailywtf.com.",
"main": "server.js",
"repository": "https://github.com/SockDrawer/SockSite",
"author": "Accalia Elementia <Accalia.de.elementia>",
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"cssmin": "^0.4.3",
"csv-stringify": "0.0.6",
"js-yaml": "^3.2.7",
"jsmin": "^1.0.1",
"mustache": "^2.0.0",
"request": "^2.55.0",
"sanitize-html": "^1.7.0",
"socket.io": "^1.3.5",
"sqlite3": "^3.0.5"
},
"optionalDependencies": {},
"scripts": {
"test": "eslint *.js && mocha test/unit/*.js",
"functionalTest": "npm install selenium-standalone -g && selenium-standalone install && mocha test\\functional\\webdriverTests.js",
"screenshot": "npm install selenium-standalone -g && selenium-standalone install && mocha test\\functional\\generateScreenshots.js"
},
"devDependencies": {
"chai": "^3.0.0",
"eslint": "^0.22.1",
"fs": "0.0.2",
"mocha": "^2.2.5",
"selenium-standalone": "^4.4.2",
"selenium-webdriver": "^2.46.1",
"sqlite3": "^3.1.1",
"webdriverio": "^2.4.5"
}
}