forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.14 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
89
90
91
92
93
94
95
96
97
98
{
"name": "@thi.ng/hiccup",
"version": "3.5.7",
"description": "HTML/SVG/XML serialization of nested data structures, iterables & closures",
"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#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",
"@thi.ng/atom": "^4.1.18",
"@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/checks": "^2.7.6",
"@thi.ng/errors": "^1.2.19",
"@thi.ng/prefixes": "^0.1.3"
},
"files": [
"*.js",
"*.d.ts",
"lib"
],
"keywords": [
"clojure",
"components",
"ES6",
"hiccup",
"html",
"iterators",
"json",
"serialization",
"svg",
"template",
"typescript",
"xml"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"thi.ng": {
"blog": [
{
"title": "How to UI in 2018",
"url": "https://medium.com/@thi.ng/how-to-ui-in-2018-ac2ae02acdf3"
},
{
"title": "Of umbrellas, transducers, reactive streams & mushrooms (Pt.1)",
"url": "https://medium.com/@thi.ng/of-umbrellas-transducers-reactive-streams-mushrooms-pt-1-a8717ce3a170"
}
],
"related": [
"hdom",
"hdom-canvas"
],
"year": 2016
}
}