UNPKG

1.19 kBJSONView Raw
1{
2 "name": "markdown-doctest",
3 "version": "1.1.0",
4 "description": "Test all the code in your markdown docs!",
5 "main": "dist/doctest.js",
6 "files": [
7 "dist",
8 "bin"
9 ],
10 "bin": {
11 "markdown-doctest": "bin/cmd.js"
12 },
13 "scripts": {
14 "build": "tsc",
15 "format": "prettier --write \"**/*.ts\"",
16 "test": "jest",
17 "prepublish": "yarn build"
18 },
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/Widdershin/markdown-doctest.git"
22 },
23 "keywords": [
24 "markdown",
25 "test",
26 "documentation"
27 ],
28 "author": "Nick Johnstone",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/Widdershin/markdown-doctest/issues"
32 },
33 "homepage": "https://github.com/Widdershin/markdown-doctest",
34 "devDependencies": {
35 "@babel/preset-typescript": "^7.6.0",
36 "@types/node": "^12.7.12",
37 "jest": "^24.9.0",
38 "prettier": "1.18.2",
39 "typescript": "^3.6.4"
40 },
41 "dependencies": {
42 "@babel/core": "^7.6.4",
43 "@babel/preset-env": "^7.6.3",
44 "chalk": "^2.4.2",
45 "commander": "^4.0.1",
46 "glob": "^7.1.4"
47 },
48 "babel": {
49 "presets": [
50 "@babel/preset-env",
51 "@babel/preset-typescript"
52 ]
53 }
54}