-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 961 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 961 Bytes
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
{
"name": "imperative-html",
"version": "0.1.2",
"description": "Write HTML in client-side JavaScript.",
"author": "John Nesky",
"license": "MIT",
"homepage": "https://github.com/johnnesky/imperative-html#readme",
"keywords": [
"html",
"svg",
"javascript",
"element",
"browser",
"dom",
"imperative",
"convenience"
],
"type": "module",
"main": "dist/esm/elements.js",
"module": "dist/esm/elements.js",
"types": "dist/esm/elements.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "./build.sh",
"test": "npm run build && ./test.sh",
"prepare": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnnesky/imperative-html.git"
},
"bugs": {
"url": "https://github.com/johnnesky/imperative-html/issues"
},
"devDependencies": {
"puppeteer": "^5.3.1",
"rollup": "^2.30.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"terser": "^5.3.8",
"typescript": "^4.0.3"
}
}