-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 KB
/
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
41
42
43
44
45
{
"name": "@opendataschema/table-schema-to-markdown",
"version": "0.4.3",
"description": "Generate Markdown documentation from a \"table schema\" file",
"main": "dist/table-schema-to-markdown.cjs.js",
"module": "dist/table-schema-to-markdown.esm.js",
"bin": {
"table-schema-to-markdown": "./src/cli.js"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"postversion": "git push --follow-tags",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://framagit.org/opendataschema/table-schema-to-markdown.git"
},
"keywords": [
"frictionless data",
"table schema",
"markdown",
"doc"
],
"author": "Christophe Benz <[email protected]>",
"license": "MIT",
"dependencies": {
"docopt": "^0.6.2",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"handlebars-intl": "^1.1.2",
"intl": "^1.2.5",
"intl-locales-supported": "^1.6.0",
"os-locale": "^3.1.0",
"tableschema": "^1.12.4"
},
"devDependencies": {
"rollup": "^1.16.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-string": "^3.0.0"
}
}