-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "hijinks",
"version": "2.0.3",
"type": "module",
"description": "Fun and tiny DOM builder utility inspired by HyperScript",
"main": "hijinks.js",
"exports": {
".": "./hijinks.js",
"./jsx-runtime": "./jsx-runtime.js"
},
"engines": {
"node": ">=12"
},
"sideEffects": false,
"scripts": {
"test:lint": "eslint .",
"test:unit": "node --test test",
"test": "npm run test:lint && npm run test:unit",
"size": "echo \"export * from '.'\" | npm exec --yes esbuild -- --bundle --minify | npm exec --yes brotli-size-cli"
},
"homepage": "https://github.com/aduth/hijinks",
"bugs": {
"url": "https://github.com/aduth/hijinks/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aduth/hijinks.git"
},
"author": {
"name": "Andrew Duthie",
"email": "[email protected]",
"url": "https://andrewduthie.com"
},
"license": "MIT",
"files": [
"hijinks.d.ts",
"hijinks.js",
"jsx-runtime.d.ts",
"jsx-runtime.js"
],
"devDependencies": {
"@aduth/eslint-config": "^4.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^24.1.0",
"jsdom-global": "^3.0.2",
"prettier": "^3.3.2"
}
}