-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "@jgarber/templatetemplate",
"version": "2.0.2",
"description": "A very small JavaScript <template> manipulation library.",
"keywords": [
"dom",
"dom-library",
"dom-manipulation",
"javascript",
"queryselector",
"template"
],
"homepage": "https://github.com/jgarber623/TemplateTemplate",
"bugs": "https://github.com/jgarber623/TemplateTemplate/issues",
"license": "MIT",
"author": {
"name": "Jason Garber",
"email": "[email protected]",
"url": "https://sixtwothree.org"
},
"files": [
"dist/*",
"example/*",
"src/*"
],
"type": "module",
"exports": {
"import": "./dist/templatetemplate.mjs",
"require": "./dist/templatetemplate.cjs"
},
"browser": "./dist/templatetemplate.js",
"directories": {
"example": "example"
},
"repository": "github:jgarber623/TemplateTemplate",
"scripts": {
"build": "rollup --config",
"clean": "rm -rf coverage dist",
"lint": "eslint .",
"prebuild": "npm run clean",
"start": "npx concurrently --kill-others-on-fail --prefix-colors yellow,blue 'npm:start:*'",
"start:build": "npm run build -- --watch",
"start:serve": "npx http-server .",
"test": "NODE_V8_COVERAGE=coverage node --experimental-test-coverage --test"
},
"devDependencies": {
"@jgarber/eslint-config": "^5.0.0",
"@rollup/plugin-terser": "^0.4.4",
"jsdom": "^25.0.0",
"rollup": "^4.12.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}