forked from stephband/dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.87 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
{
"name": "dom",
"title": "dom",
"version": "1.3.1",
"author": {
"name": "stephband",
"url": "http://stephen.band",
"twitter": "stephband"
},
"repository": {
"type": "git",
"url": "https://github.com/stephband/dom.git"
},
"bugs": {
"url": "https://github.com/stephband/dom/issues"
},
"licenses": [
{
"url": "http://unlicense.org/"
}
],
"files": [
"js/dom-activate.js",
"js/dom-swipe.js",
"js/popable.js",
"js/toggleable.js",
"js/switchable.js",
"js/swipeable.js",
"js/focusable.js",
"js/removeable.js",
"js/locateable.js",
"js/validateable.js"
],
"description": "A library of DOM functions for HTML and SVG, importable as individual ES modules.",
"keywords": [
"DOM",
"html",
"browser",
"web",
"library",
"functional",
"stream",
"touch",
"event",
"finger",
"move"
],
"homepage": "http://stephen.band/dom/",
"docs": "http://stephen.band/dom/",
"devDependencies": {
"eslint": "^6.5.0",
"rollup": "^2.21.0",
"madge": "^3.9.2"
},
"module": "module.js",
"image": "https://stephen.band/images/logo.png",
"scripts": {
"lint": "eslint modules/*.js",
"build": "npm run build-module && npm run build-css && npm run build-docs",
"build-css": "node ../fn/build-css.js style.css style.min.css",
"build-module": "rollup ./module.js --o ./module.rolled.js --f esm",
"build-docs": "node ../fn/build-html.js index.template.html index.html",
"build-polyfill": "rollup ./polyfills/element.scrollintoview.js --o ./build/element.scrollintoview.rolled.js --f esm",
"graph": "madge --image ./module.svg ./module.js"
}
}