forked from DigitalHistory/03-js-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.03 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.0.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",
"watch": "mocha -t 0 test/test.js --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults -w",
"test-cli": "mocha test/test.js --reporter mocha-pretty-spec-reporter",
"test-less-confusing": "mocha -t 0 test/test.js --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults || true",
"test-main-only": "mocha -t 0 test/test.js --grep \"Reflection\" --invert --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults",
"test-reflection-only": "mocha -t 0 test/test.js --grep \"Reflection\" --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": {
"brfs": "^1.4.3",
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.2",
"file-url": "^2.0.2",
"fs-cheerio": "^3.0.0",
"inline-css": "^2.2.3",
"jquery": "^3.3.1",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"jshint": "^2.9.5",
"mocha": "^4.0.1",
"random-words": "^1.1.0"
},
"devDependencies": {
"chai-dom": "^1.6.0",
"chai-fs": "^2.0.0",
"git-commits": "^1.3.0",
"git-config": "0.0.7",
"git-state": "^4.0.0",
"html-word-count": "^2.0.0",
"mocha-jshint": "^2.3.1",
"mochawesome": "^3.0.0",
"path": "^0.12.7"
}
}