-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "asciidoc2gslides",
"version": "0.0.1",
"description": "Convert AsciiDoctor to Google Slides",
"main": "index.js",
"files": [
"index.js",
"bin/",
"lib/",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf lib",
"compile": "babel --extensions '.ts,.js' --source-maps both -d lib/ src/",
"prepublish": "npm run compile",
"exec": "npm run compile && node bin/md2gslides.js",
"test": "mocha --require ./test/register --timeout 5000 \"test/**/*.spec.ts\"",
"test-debug": "mocha --debug-brk --inspect --require ./test/register --timeout 5000 \"test/**/*.spec.ts\"",
"lint": "./node_modules/.bin/eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" bin",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "https://github.com/bootstrapworld./asciidoc2googleslides"
},
"keywords": [
"asciidoc",
"asciidoctor",
"google",
"slides"
],
"license": "Apache-2.0",
"dependencies": {
"argparse": "2.0.1",
"await-to-js": "^2.1.1",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"debug": "^4.3.1",
"extend": "^3.0.2",
"file-url": "^3.0.0",
"google-auth-library": "^6.1.3",
"googleapis": "^66.0.0",
"highlight.js": "^10.5.0",
"inline-styles-parse": "^1.2.0",
"jsonfile": "^6.1.0",
"layout": "^2.2.0",
"lodash": "^4.17.11",
"lowdb": "^1.0",
"lowlight": "^1.17.0",
"markdown": "^0.5.0",
"markdown-it": "^12.0.4",
"markdown-it-attrs": "^3.0.3",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-expand-tabs": "^1.0.11",
"markdown-it-fence": "^0.1.3",
"markdown-it-lazy-headers": "^0.1.3",
"markdown-it-video": "^0.6.3",
"mathjax-node": "^2.1.1",
"md5-file": "^5.0.0",
"mime-types": "^2.1.22",
"mkdirp": "^1.0.4",
"native-css": "^2.0.0",
"node-fetch": "^2.6.1",
"opener": "^1.5.2",
"parse-color": "^1.0.0",
"parse5": "^6.0.1",
"probe-image-size": "^6.0.0",
"promise": "^8.1.0",
"promise-retry": "^2.0.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sharp": "^0.27.0",
"tmp": "0.2.1",
"tmp-promise": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.10",
"@types/lowdb": "^1.0.9",
"@types/markdown-it": "12.0.0",
"@types/sharp": "^0.26.1",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"mocha": "^8.2.1",
"mock-fs": "^4.13.0",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"bin": {
"md2gslides": "bin/md2gslides.js"
},
"author": "The Bootstrap Team",
"contributors": [
"Ian Gurland",
"Naveen Sharma",
"Dorai Sitaram"
]
}