-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "nightwatch-nunit3-reporter",
"version": "1.2.0",
"description": "A simple reporter for Nightwatch.js using the NUnit 3 format.",
"main": "dist",
"typings": "dist",
"scripts": {
"build": "tsc --project tsconfig.json",
"prettify": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx}\"",
"test": "node -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlorianRappl/nightwatch-nunit3-reporter.git"
},
"keywords": [
"nightwatch",
"end-to-end",
"test",
"reporter"
],
"author": "Florian Rappl",
"license": "MIT",
"bugs": {
"url": "https://github.com/FlorianRappl/nightwatch-nunit3-reporter/issues"
},
"homepage": "https://github.com/FlorianRappl/nightwatch-nunit3-reporter",
"dependencies": {
"ejs": "^3.0.6",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"@types/ejs": "^3.0.6",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.31",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.2.2"
}
}