This repository has been archived by the owner on Feb 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "scout-ua",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "npm run lint && npm run unit-test && npm run integ-test",
"unit-test": "nyc --reporter=text mocha test/unit && nyc report --reporter=html",
"travis-unit": "nyc mocha test/unit && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"integ-test": "mocha ./test/integration"
},
"dependencies": {
"audioconcat": "^0.1.3",
"aws-sdk": "^2.224.1",
"bcryptjs": "^2.4.3",
"body-parser": "~1.18.2",
"chunk-text": "^1.0.5",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^5.0.1",
"dynamoose": "^0.8.7",
"express": "~4.15.5",
"get-website-favicon": "0.0.7",
"glob": "^7.1.2",
"html-entities": "^1.2.1",
"html-metadata": "^1.7.0",
"jsonwebtoken": "^8.2.0",
"natural": "^0.6.1",
"node-uuid-generator": "^1.0.0",
"readability-js": "^1.0.7",
"request-promise": "^4.2.2",
"serve-favicon": "~2.4.5",
"universal-analytics": "^0.4.17",
"url": "^0.11.0",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"coveralls": "^3.0.2",
"eslint": "^4.18.2",
"eslint-config-google": "^0.9.1",
"mocha-lcov-reporter": "^1.3.0",
"mocha": "^5.2.0",
"nock": "^9.4.1",
"nyc": "^11.6.0",
"rewire": "^4.0.1",
"sinon": "^6.1.3"
},
"jest": {
"coverageDirectory": "./coverage/",
"moduleFileExtensions": [
"js",
"json"
],
"testMatch": [
"**/test/**/*-test.(js)"
],
"mapCoverage": true,
"setupTestFrameworkScriptFile": "<rootDir>/test/common.js",
"testEnvironment": "node"
}
}