-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 950 Bytes
/
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
{
"name": "mountebank-formatters",
"version": "0.0.2",
"author": "Brandon Byars <brandon.byars@gmail.com>",
"description": "The default parsers and formatters for managing mountebank test data",
"homepage": "http://www.mbtest.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bbyars/mountebank-formatters.git"
},
"bugs": {
"url": "https://github.com/bbyars/mountebank-formatters/issues",
"email": "brandon.byars@gmail.com"
},
"main": "./src/index.js",
"scripts": {
"test": "node node_modules/.bin/eslint **/*.js && node node_modules/.bin/_mocha test/**/*.js"
},
"keywords": [
"test data",
"mountebank"
],
"dependencies": {
"ejs": "2.7.4",
"fs-extra": "9.0.1"
},
"devDependencies": {
"eslint": "7.16.0",
"mocha": "8.2.1",
"snyk": "1.437.3"
},
"files": ["src", "README.md", "package*.json"],
"engines": {
"node": ">=10"
}
}