-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 956 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
38
39
40
{
"name": "joi-md-doc",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cover": "jest --coverage",
"start": "node ./example/script.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobworrel/joi-md-doc.git"
},
"author": "Jacob Worrel",
"license": "ISC",
"bugs": {
"url": "https://github.com/jacobworrel/joi-md-doc/issues"
},
"homepage": "https://github.com/jacobworrel/joi-md-doc#readme",
"dependencies": {
"json2md": "^1.6.5",
"mkdirp": "^0.5.1",
"ramda": "^0.26.1"
},
"devDependencies": {
"@hapi/joi": "^16.1.7",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "1.19.1"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}