-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "mocha-html-reporter",
"main": "dist",
"version": "0.0.1",
"license": "GPL-3.0-only",
"description": "Html reporter with embedded styles, scripts and screenshots.",
"keywords": [
"mocha",
"html",
"reporter"
],
"repository": "https://github.com/ruddickmg/mocha-html-reporter.git",
"homepage": "https://github.com/ruddickmg/mocha-html-reporter/",
"author": "Marcus Ruddick <ruddickmg@gmail.com>",
"dependencies": {
"@babel/core": "^7.14.8",
"@fortawesome/fontawesome-free": "^5.15.3",
"chalk": "^4.1.1",
"clean-css": "^5.1.3",
"html-minifier": "^4.0.0",
"html2canvas": "^1.1.4",
"jquery": "^3.6.0",
"JSONStream": "^1.3.5",
"mocha": "^9.0.2",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"popper.js": "^1.16.1",
"prismjs": "^1.24.1",
"uglify-js": "^3.13.10",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/node": "^7.14.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/types": "^7.14.8",
"@types/chai": "^4.2.21",
"@types/clean-css": "^4.2.5",
"@types/html-minifier": "^4.0.1",
"@types/html2canvas": "^1.0.0",
"@types/fs-extra": "^9.0.12",
"@types/mocha": "^8.2.3",
"@types/node": "^16.4.0",
"@types/node-sass": "^4.11.2",
"@types/pngjs": "^6.0.1",
"@types/sinon": "^10.0.2",
"@types/uglify-js": "^3.13.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"event-stream": "^4.0.1",
"fs-extra": "^10.0.0",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^5.5.1",
"lodash": "^4.17.21",
"nanoid": "^3.1.23",
"nodemon": "^2.0.12",
"node-sass": "^6.0.1",
"nyc": "^15.1.0",
"pretty": "^2.0.0",
"sinon": "^11.1.1",
"slash": "^4.0.0",
"source-map": "^0.7.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"tslib": "^2.3.0"
},
"scripts": {
"dev": "nodemon",
"start": "mocha -r ./test/helpers/initializeMocha.ts -O outputFile=test/reports/testOutput.html,testDir=test/unit,reporter=spec --reporter ./dist",
"lint": "eslint .",
"build": "babel src --extensions \".ts\" --out-dir dist",
"reload": "npm run build && npm run start",
"test:unit": "mocha -r ./test/helpers/initializeMocha.ts",
"test:browser": "karma start karma.conf.js"
},
"nodemonConfig": {
"ignore": ["test/**/*", "dist/**/*"],
"exec": "npm run reload"
}
}