-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@tenon-io/tenon-reporters",
"version": "1.0.0",
"main": "index.js",
"description": "Display results from Tenon.io using a custom test reporter.",
"homepage": "https://github.com/tenon-io/tenon-reporters",
"bugs": "https://github.com/tenon-io/tenon-reporters/issues",
"author": {
"name": "Justin Stockton",
"email": "[email protected]"
},
"contributors": [
"Marko Milanović <[email protected]> (https://github.com/macmilan)"
],
"repository": {
"type": "git",
"url": "https://github.com/tenon-io/tenon-reporters"
},
"license": "MIT",
"files": [
"index.js",
"lib",
"lib/templates"
],
"keywords": [
"tenon",
"accessibility",
"a11y",
"testing"
],
"dependencies": {
"csv-stringify": "^5.6.5",
"hogan.js": "^3.0.2"
},
"devDependencies": {
"grunt": "^1.4.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-cli": "^4.0.0",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^5.1.0",
"mocha": "^9.2.1",
"must": "^0.13.4",
"nock": "^13.2.4"
},
"scripts": {
"test": "grunt test",
"license": "npm install -g license-checker && license-checker --production --csv --out licenses.csv"
}
}