-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 964 Bytes
/
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
{
"name": "doc-limp",
"version": "1.2.2",
"description": "lightweight extensible document markup language",
"main": "lib/index.js",
"scripts": {
"test": "npm run build && mocha",
"build-browser": "npm run build-internal -- --platform=browser",
"build-internal": "tsc --noEmit && esbuild --outfile=dist/main.js --bundle --minify src/index.ts",
"build": "tsc -d --outDir lib",
"build-docs": "npm run build && node ./tools/build-documents.js",
"prepare": "git checkout master && npm run build && node ./cli.js README.limp"
},
"keywords": [
"documentation",
"markup"
],
"author": "frodo821",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"esbuild": "^0.14.21",
"mocha": "^9.2.0",
"typescript": "^4.5.5"
},
"bin": {
"limp": "./cli.js",
"limp2markdown": "./scripts/markdown.js"
},
"repository": "https://github.com/frodo821/limp",
"homepage": "https://limp.frodo821.me"
}