-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
92 lines (92 loc) · 1.78 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
{
"name": "jadelet",
"version": "2.0.0-pre.9",
"description": "Lightweight, elegant HTML templates",
"license": "MIT",
"scripts": {
"build": "bash build/build.sh",
"test": "c8 mocha"
},
"devDependencies": {
"@danielx/civet": "0.7.19",
"@danielx/hera": "0.8.16",
"@types/jsdom": "^16.2.14",
"@types/md5": "^2.3.2",
"@types/mocha": "^10.0.6",
"c8": "10.1.2",
"esbuild": "0.23.0",
"jsdom": "24.0.0",
"mocha": "10.6.0",
"typescript": "5.5.3"
},
"dependencies": {
"@danielx/observable": "0.7.0",
"commander": "^8.1.0",
"md5": "^2.3.0"
},
"homepage": "https://jadelet.com",
"repository": {
"type": "git",
"url": "https://github.com/STRd6/jadelet.git"
},
"mocha": {
"extension": [
"civet"
],
"require": [
"@danielx/civet/register",
"@danielx/hera/register"
],
"reporter": "dot",
"recursive": true,
"spec": [
"test"
]
},
"c8": {
"all": true,
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"reporter": [
"lcov",
"text"
],
"extension": [
".civet"
],
"include": [
"source/"
],
"exclude": [
"source/cli.civet"
]
},
"bin": {
"jadelet": "dist/jadelet"
},
"files": [
"dist/",
"types/",
"esbuild-plugin.js",
"esbuild-plugin.d.ts",
"register.js"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./register": "./register.js",
"./esbuild": {
"import": "./dist/esbuild.mjs",
"types": "./dist/esbuild.d.ts"
}
}
}