-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.26 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.26 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ndf-elements",
"x-old-name": "ndf-web-components",
"version": "1.7.1",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./custom": "./custom.js",
"./my": "./my.js",
"./i.js": "./i.js",
"./base": "./src/MyMinElement.js",
"./blog": "./src/blog.js",
"./my-map": "./src/components/MyMapElement.js",
"./an-form": "./src/an-form.js",
"./dia": "./src/dia.js",
"./experiment": "./src/experiment.js",
"./util": "./util.js",
"./web": "./web.js"
},
"sideEffects": [
"./i.js",
"**/*.css"
],
"description": "My collection of useful custom elements.",
"license": "MIT",
"x-copyright": "© 2021-2025 Nick Freear.",
"author": "Nick Freear",
"homepage": "https://nfreear.github.io/elements/demo/",
"repository": {
"type": "git",
"url": "git+https://github.com/nfreear/elements.git"
},
"bugs": {
"url": "https://github.com/nfreear/elements/issues"
},
"scripts": {
"build": "npm run build:feed && npm run build:template && npm run build:pkg",
"build:doc": "npx jsdoc -r -c ./jsdoc-conf.json",
"build:feed": "node ./src/build/feed.js > ./src/feed.json",
"build:site": "cp -R *.js demo src _site",
"build:template": "node ./src/build/template.js > ./src/template.html",
"build:pkg": "node ./scripts/copy.mjs",
"dry": "npm publish --workspaces --access=public --dry-run",
"prepare": "npm run build && npm test # && npm run version",
"start": "npm run build:feed && npx servor --reload",
"inner:grep": "grep -rn '\\.innerHTML' src",
"inner:count": "grep -r '\\.innerHTML =' src | wc -l",
"count:myelem": "grep -r 'extends MyElement' src | wc -l",
"grep:animate": "grep -rn -E '(transition|animation)' src/components",
"fix": "npx eslint --fix",
"lint": "npx eslint --fix",
"test": "npm run lint && npm run inner:count"
},
"keywords": [
"ndf-web-components",
"my-elements",
"my",
"my-map",
"elements",
"MyElement",
"web components",
"components",
"custom elements",
"pwa"
],
"workspaces": [
"packages/*"
],
"semistandard": {
},
"devDependencies": {
"@polymer/iron-component-page": "^4.0.1",
"eslint": "^9.32.0",
"neostandard": "^0.12.2",
"servor": "^4.0.2"
}
}