-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
55 lines (55 loc) · 2.06 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
{
"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",
"autograde-main": "mocha -t 0 test/test.js --grep \"Reflection|Git Checks\" --invert",
"autograde-reflection": "mocha -t 0 test/test.js --grep \"Reflection\""
},
"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.10",
"co": "^4.6.0",
"jquery": "^3.6.0",
"jsdom": "^17.0.0",
"simple-git": "^2.45.1"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-fs": "^2.0.0",
"html-word-count": "^2.0.0",
"mocha": "^9.1.1",
"mochawesome": "^6.2.2",
"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"
}
}