-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.89 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
{
"name": "web-skills-intro-assignment",
"version": "1.1.0",
"description": "An assignment for Digital History at University of Toronto. Tests basic Javascript skills.",
"main": "index.js",
"scripts": {
"test": "mocha -t 0 test/test.js --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults",
"test-less-confusing": "mocha -t 0 test/test.js --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults || true",
"watch": "mocha -t 0 test/test.js --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults -w",
"test-main-only": "mocha -t 0 test/test.js --grep \"Reflection\" --invert --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults"
},
"repository": {
"type": "git",
"url": "git+https://github.com/titaniumbones/assignment-web-skills-intro.git"
},
"keywords": [
"javascript",
"assignment"
],
"author": "Matt Price",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/titaniumbones/assignment-web-skills-intro/issues"
},
"homepage": "https://github.com/titaniumbones/assignment-web-skills-intro#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"co": "^4.6.0",
"jquery": "^3.5.1",
"jsdom": "^16.2.2",
"simple-git": "^2.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
"html-word-count": "^2.0.0",
"mocha": "^7.1.2",
"mochawesome": "^6.1.1",
"path": "^0.12.7",
"window-resizeto": "0.0.2"
},
"oldDependencies": {
"mocha-phantomjs": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-html-reporter": "^0.2.7",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-requirejs": "^1.1.0",
"karma-spec-reporter": "0.0.31",
"requirejs": "^2.3.5",
"selenium-webdriver": "^3.6.0"
}
}