forked from ksawme/node-course-2-chat-app
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.58 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"stop": "forever stopall",
"runner": "node server/server.js",
"test-jenkins": "mocha server/utils/*.test.js --reporter mocha-junit-reporter",
"test": "nyc --reporter=html --reporter=text mocha server/utils/*.test.js --timeout 1500",
"test-watch": "nodemon --exec 'npm test'",
"unit-test": "mocha server/utils/*.test.js --timeout 1500",
"code-coverage-test": "nyc --reporter=html --reporter=text mocha server/utils/*.test.js --timeout 1500",
"e2etest": "testcafe puppeteer:no_sandbox server/testcafe/test.js --reporter html-testrail",
"lighthouse:ci": "lighthouse --output-path=report/lighthouse-report.html --quiet --chrome-flags='--headless --no-sandbox=true' http://localhost:3000",
"test2":"mocha server/utils/*.test.js --reporter mochawesome",
"test-mochaawesome": "nyc --reporter=html mocha utils/*.test.js --reporter mochawesome --timeout 15000 --exit"
},
"engines": {
"node": "9.5.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.2",
"mocha-jenkins-reporter": "^0.3.12",
"mocha-junit-reporter": "^1.17.0",
"moment": "^2.20.1",
"socket.io": "^2.0.4",
"testcafe": "^0.20.3"
},
"devDependencies": {
"expect": "^1.20.2",
"lighthouse": "^2.9.4",
"mocha": "^5.0.1",
"mochawesome": "^3.0.2",
"nyc": "^12.0.2"
}
}