forked from googleworkspace/md2googleslides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.92 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
{
"name": "md2gslides",
"version": "0.3.0",
"description": "Convert Markdown to Google Slides",
"main": "index.js",
"files": [
"index.js",
"bin/",
"lib/",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rm -rf lib",
"compile": "babel --source-maps both -d lib/ src/",
"prepublish": "npm run compile",
"test": "npm run compile && mocha --compilers js:babel-core/register --timeout 5000",
"lint": "./node_modules/.bin/eslint --fix src bin"
},
"repository": {
"type": "git",
"url": "https://github.com//googlesamples/md2googleslides"
},
"keywords": [
"markdown",
"google",
"slides"
],
"author": "Steven Bazyl",
"license": "Apache-2.0",
"dependencies": {
"argparse": "^1.0.7",
"babel-polyfill": "~6.16.0",
"debug": "^2.2.0",
"extend": "^3.0.0",
"google-auth-library": "^0.9.8",
"googleapis": "~16.1",
"highlight.js": "^9.7.0",
"inline-styles-parse": "^1.2.0",
"jsonfile": "^2.4.0",
"layout": "^2.2.0",
"lodash": "^4.16.4",
"lowdb": "^0.13.1",
"lowlight": "^1.4.0",
"markdown": "^0.5.0",
"markdown-it": "^8.0.0",
"markdown-it-attrs": "^0.7.1",
"markdown-it-emoji": "^1.2.0",
"markdown-it-expand-tabs": "^1.0.11",
"markdown-it-lazy-headers": "^0.1.3",
"markdown-it-video": "^0.4.0",
"mkdirp": "^0.5.1",
"native-css": "^1.2.5",
"opener": "^1.4.2",
"parse-color": "^1.0.0",
"parse5": "^3.0",
"probe-image-size": "^2.1.1",
"promise": "^7.1.1",
"promise-retry": "^1.1.1",
"uuid": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-subset": "^1.3.0",
"eslint": "^3.6.0",
"mocha": "^3.0.2",
"mock-fs": "^3.11.0",
"nock": "^8.0.0"
},
"bin": {
"md2gslides": "bin/md2gslides.js"
}
}