-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 965 Bytes
/
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
{
"name": "htl",
"version": "0.3.1",
"description": "Hypertext Literal",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"jsdelivr": "dist/htl.min.js",
"unpkg": "dist/htl.min.js",
"exports": {
"umd": "./dist/htl.min.js",
"default": "./src/index.js"
},
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"homepage": "https://github.com/observablehq/htl",
"license": "ISC",
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"sideEffects": false,
"scripts": {
"test": "mocha 'test/**/*-test.js' && eslint src test",
"prepublishOnly": "rm -rf dist && rollup -c && git push",
"postpublish": "git push --tags"
},
"devDependencies": {
"@rollup/plugin-json": "4",
"eslint": "7",
"he": "1",
"js-beautify": "1",
"jsdom": "17",
"mocha": "9",
"rollup": "2",
"rollup-plugin-terser": "7"
},
"engines": {
"node": ">=12"
}
}