-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.29 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.29 KB
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
{
"name": "git-and-github",
"version": "0.2.1",
"description": "exercises for learning Github in Digital History",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha -t 0 --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults test/test.js --require mocha-steps",
"test-reflection": "mocha -t 0 --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults test/test.js --require mocha-steps|| true",
"watch": "mocha -t 0 --reporter mochawesome --reporter-options reportDir=TestResults,reportFilename=testresults test/test.js -w --require mocha-steps",
"collectjson": "node utils/collectjson.js"
},
"author": "Matt Price",
"license": "AGPL-3.0",
"repository": "https://github.com/DigitalHistory/00-git-and-github",
"dependencies": {
"chai": "^4.3.4",
"chai-fs": "^2.0.0",
"git-commits": "^1.3.0",
"git-state": "^4.1.0",
"gitconfig": "^2.0.8",
"html-word-count": "^2.0.0",
"json-validation": "^1.0.4",
"jsonlint": "^1.6.3",
"mocha": "^9.1.1",
"mocha-bdd-steps": "^1.1.0",
"mocha-pretty-spec-reporter": "0.1.0-beta.2",
"mocha-steps": "^1.3.0",
"mochawesome": "^6.2.2",
"shelljs": "^0.8.4",
"url-exists-deep": "^2.1.0"
},
"devDependencies": {}
}