-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 860 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 860 Bytes
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
{
"name": "table-driven-tests",
"version": "0.0.6",
"description": "Japa plugin to use markdown tables as test data",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build:watch": "tsc -w",
"build": "tsc",
"prepare": "npm run build",
"test": ""
},
"files": [
"build/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/guntribam/table-driven-tests.git"
},
"keywords": [
"japa",
"plugin",
"adonis"
],
"author": "guntribam",
"license": "ISC",
"bugs": {
"url": "https://github.com/guntribam/table-driven-tests/issues"
},
"homepage": "https://github.com/guntribam/table-driven-tests#readme",
"dependencies": {
"get-caller-file": "^2.0.5",
"parse-markdown-table": "^0.0.6"
},
"devDependencies": {
"@japa/runner": "^2.0.5"
}
}