-
Notifications
You must be signed in to change notification settings - Fork 288
/
package.json
123 lines (123 loc) · 3.48 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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "md2gslides",
"version": "0.5.1",
"description": "Convert Markdown to Google Slides",
"main": "index.js",
"files": [
"index.js",
"bin/",
"lib/",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "gts clean",
"compile": "tsc && 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": "gts lint",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com//googlesamples/md2googleslides"
},
"keywords": [
"markdown",
"google",
"slides"
],
"author": "Steven Bazyl",
"license": "Apache-2.0",
"dependencies": {
"argparse": "^2.0.0",
"await-to-js": "^3.0.0",
"babel-polyfill": "^6.26.0",
"debug": "^4.1.1",
"extend": "^3.0.0",
"file-url": "^3.0.0",
"google-auth-library": "^7.1.2",
"googleapis": "^78.0.0",
"highlight.js": "^10.7.3",
"inline-styles-parse": "^1.2.0",
"jsonfile": "^6.0.1",
"layout": "^2.2.0",
"lodash": "^4.17.11",
"lowdb": "^1.0",
"lowlight": "^1.20.0",
"markdown": "^0.5.0",
"markdown-it": "^12.0.6",
"markdown-it-attrs": "^4.0.0",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-expand-tabs": "^1.0.13",
"markdown-it-fence": "^0.1.3",
"markdown-it-lazy-headers": "^0.1.3",
"markdown-it-video": "^0.6.3",
"mathjax-node": "^2.1.1",
"mime-types": "^2.1.22",
"mkdirp": "^1.0.4",
"native-css": "^2.0.0",
"node-fetch": "^2.3.0",
"opener": "^1.4.2",
"parse-color": "^1.0.0",
"parse5": "^6.0.1",
"probe-image-size": "^7.2.1",
"promise": "^8.0.3",
"promise-retry": "^2.0.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"sharp": "^0.28.0",
"tmp": "0.2.1",
"tmp-promise": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-typescript": "7.14.5",
"@babel/register": "7.14.5",
"@types/chai": "^4.2.19",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-subset": "^1.3.3",
"@types/debug": "^4.1.5",
"@types/extend": "^3.0.1",
"@types/jsonfile": "^6.0.0",
"@types/lowdb": "1.0.10",
"@types/lowlight": "^0.0.2",
"@types/markdown-it": "12.0.2",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^8.2.2",
"@types/mock-fs": "^4.13.0",
"@types/node": "15.12.4",
"@types/parse-color": "^1.0.0",
"@types/parse5": "^6.0.0",
"@types/probe-image-size": "^7.0.0",
"@types/promise-retry": "^1.1.3",
"@types/request-promise-native": "^1.0.17",
"@types/sharp": "0.28.3",
"@types/tmp": "^0.2.0",
"@types/uuid": "^8.3.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"chai-subset": "1.6.0",
"gts": "3.1.0",
"mocha": "9.0.1",
"mock-fs": "5.0.0",
"nock": "13.1.0",
"typescript": "4.3.4"
},
"bin": {
"md2gslides": "bin/md2gslides.js"
}
}