-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.43 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": "literally-cli",
"version": "0.0.10",
"description": "A tool for literate programming, which can be used to generate various executable assets from markdown files.",
"main": "dist/literally.js",
"repository": "https://github.com/texodus/literally",
"author": "texodus",
"license": "MIT",
"files": [
"dist/**/*"
],
"dependencies": {
"@babel/core": "^7.13.10",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"eslint": "^7.1.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.3",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
"marked-ast": "^0.3.0",
"marked-ast-markdown": "^2.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sharp": "^0.31.3",
"source-map": "^0.7.3"
},
"peerDependencies": {
"http-server": "^0.12.3",
"puppeteer": "^3.3.0"
},
"devDependencies": {
"literally-cli": "0.0.8"
},
"bin": {
"literally": "literally"
},
"scripts": {
"build": "node ./node_modules/literally-cli/dist/literally.js --format commonjs --output dist --name literally README.md",
"literally-dev": "./literally",
"bootstrap": "yarn literally-dev --format js --output dist --name literally README.md",
"test": "yarn build && yarn bootstrap && yarn bootstrap"
}
}