forked from ProdPerfect/testcafe-reporter-tap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "testcafe-reporter-tap-gww",
"version": "2.0.0",
"description": "TAP TestCafe reporter plugin.",
"repository": "https://github.com/globalworldwide/testcafe-reporter-tap",
"author": {
"name": "Will O'Brien",
"email": "will.obrien@bracketsoftware.com"
},
"contributors": [
{
"name": "Matthew Douglass",
"email": "matthew@globalworldwide.com"
}
],
"main": "src/index",
"files": [
"src"
],
"scripts": {
"test": "mocha --ui bdd --reporter spec --timeout 2000 test/**.js",
"lint": "eslint src/**.js test/**.js",
"format": "prettier \"{src,test}/**/*.{js,ts}\" --write",
"presubmit": "npm-run-all -s format lint test",
"prepublish": "npm run presubmit"
},
"keywords": [
"testcafe",
"reporter",
"plugin",
"tap"
],
"license": "MIT",
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"testcafe": "^2.6.2"
},
"dependencies": {
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"ramda": "^0.29.0"
}
}