-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.26 KB
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
{
"name": "cnvrtdwn_js",
"version": "0.1.2",
"description": "This is minimal markdown to html parser which can interprete any markdown input and generate a html file from its content.",
"author": "Christian Silfang",
"license": "MIT",
"scripts": {
"copy": "node tools/copy-files.js",
"cleanup": "node tools/cleanup-package.js",
"publish": "npm publish dist",
"build": "npm run rimraf:dist && npm run copy && npm run tsc && npm run cleanup",
"tsc": "tsc",
"rimraf:dist": "rimraf ./dist",
"live:dev": "nodemon --watch src --exec \"npm run build:ts && npm run start\"",
"start": "node dist/index"
},
"main": "index.js",
"bin": {
"cnvrtdwn": "./index.js"
},
"dependencies": {
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"puppeteer": "^1.10.0",
"puppeteer-core": "^1.10.0",
"showdown": "^1.8.7"
},
"devDependencies": {
"@types/node": "^10.12.2",
"babel-cli": "^6.26.0",
"del": "^2.2.2",
"nodemon": "^1.18.5",
"rimraf": "^2.6.1",
"rollup": "^0.51.8",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"typescript": "^3.1.5"
}
}