-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"name": "ts-markdown",
"version": "1.2.0",
"description": "An extensible TypeScript markdown generator that takes JSON and creates a markdown document.",
"repository": "https://github.com/kgar/ts-markdown",
"homepage": "https://github.com/kgar/ts-markdown#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc && npm run build-web",
"build-web": "rimraf dist.browser && rollup -c && uglifyjs dist.browser/ts-markdown.js --output dist.browser/ts-markdown.min.js --compress --mangle",
"build-watch": "tsc --watch",
"test": "jest",
"test-watch": "jest --watch",
"prettier": "prettier --write src",
"prepare": "husky install",
"refresh-index": "npx barrelsby --delete --location top --exclude \"dist\" \"test.ts\" \"jest.config\" --directory ./src",
"copy-custom-docs": "npx copyfiles --error --verbose --flat \"custom-docs/playground.js\" \"custom-docs/playground.css\" \"custom-docs/playground.html\" \"custom-docs/ts-markdown.js\" \"docs\"",
"refresh-docs": "typedoc && npm run copy-custom-docs"
},
"keywords": [
"markdown",
"json",
"generate",
"data",
"render",
"typescript",
"md",
"js",
"ts"
],
"author": "KGar",
"license": "MIT",
"devDependencies": {
"@knodes/typedoc-plugin-pages": "^0.23.1",
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^28.1.4",
"husky": "^8.0.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typedoc": "^0.23.9",
"typescript": "^4.7.4",
"uglify-js": "^3.16.3"
},
"dependencies": {
"yaml": "^2.4.5"
}
}