forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.82 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
79
80
81
82
83
84
85
86
87
88
{
"name": "@thi.ng/hiccup-markdown",
"version": "1.2.31",
"description": "Markdown parser & serializer from/to Hiccup format",
"module": "./index.js",
"main": "./lib/index.js",
"umd:main": "./lib/index.umd.js",
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/umbrella.git"
},
"homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-markdown#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/postspectacular"
},
{
"type": "patreon",
"url": "https://patreon.com/thing_umbrella"
}
],
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module",
"build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all",
"build:es6": "tsc --declaration",
"build:test": "rimraf build && tsc -p test/tsconfig.json",
"build:check": "tsc --isolatedModules --noEmit",
"test": "mocha test",
"cover": "nyc mocha test && nyc report --reporter=lcov",
"clean": "rimraf *.js *.d.ts .nyc_output build coverage doc lib",
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
"doc": "node_modules/.bin/typedoc --mode modules --out doc --theme ../../tools/doc/typedoc-theme src",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"pub": "yarn build:release && yarn publish --access public"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@microsoft/api-extractor": "^7.9.2",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.26",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"ts-node": "^8.10.1",
"typedoc": "^0.18.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@thi.ng/api": "^6.12.2",
"@thi.ng/arrays": "^0.6.15",
"@thi.ng/checks": "^2.7.6",
"@thi.ng/defmulti": "^1.2.23",
"@thi.ng/errors": "^1.2.19",
"@thi.ng/fsm": "^2.4.23",
"@thi.ng/hiccup": "^3.5.7",
"@thi.ng/strings": "^1.9.4",
"@thi.ng/text-canvas": "^0.2.28",
"@thi.ng/transducers": "^7.2.2"
},
"files": [
"*.js",
"*.d.ts",
"lib"
],
"keywords": [
"ES6",
"ast",
"converter",
"DOM",
"hiccup",
"markdown",
"parser",
"serialize",
"transducers",
"typescript"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"thi.ng": {
"status": "alpha",
"year": 2018
}
}