-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.16 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": "wikity",
"version": "1.3.6",
"description": "Compile wikitext to HTML! Supporst use of wikitext as a templating language.",
"main": "dist/index.js",
"scripts": {
"test": "tsc && cd test && eleventy"
},
"bin": {
"wikity": "bin/index.js"
},
"engines": {
"node": ">=12"
},
"files": [
"bin/",
"dist/"
],
"keywords": [
"compiler",
"compilation",
"wikitext",
"mediawiki",
"html",
"template-language",
"templating-language",
"eleventy",
"eleventy-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Nixinova/Wikity.git"
},
"author": "Nixinova (https://nixinova.com)",
"bugs": {
"url": "https://github.com/Nixinova/Wikity/issues"
},
"homepage": "https://github.com/Nixinova/Wikity#readme",
"license": "ISC",
"dependencies": {
"dateformat": "^4.6.3",
"dedent": "^1.5.3",
"escape-html": "^1.0.3",
"glob": "^8.1.0"
},
"devDependencies": {
"@types/dateformat": "^3.0.1",
"@types/dedent": "^0.7.2",
"@types/escape-html": "^1.0.4",
"@types/glob": "^8.1.0",
"@types/node": "ts5.0",
"typescript": "~5.0.4 <5.1"
}
}