-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"name": "@hashicorp/api-double",
"version": "1.6.1",
"description": "api-double serving via HTTP or other means",
"main": "index.js",
"scripts": {
"format:js": "prettier --write --ignore-path .gitignore \"**/*.js\" \"**/.*.js\"",
"docs": "typedoc --theme markdown --out ./docs -excludeExternals index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/hashicorp/api-double.git"
},
"keywords": [],
"author": "",
"collaborators": [
{
"email": "jcowen@hashicorp.com"
}
],
"license": "MPL-2.0",
"bin": {
"api-double": "./bin/index.js"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"array-range": "^1.0.1",
"backtick-template": "^0.2.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"faker": "^5.5.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"typedoc": "^0.21.2",
"typedoc-plugin-markdown": "^3.10.2"
}
}