-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "ndf-elements",
"x-old-name": "ndf-web-components",
"version": "1.6.0",
"description": "My collection of useful custom elements.",
"type": "module",
"main": "index.js",
"license": "MIT",
"x-copyright": "© 2021-2024 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"
},
"exports": {
".": "./index.js",
"./custom": "./custom.js",
"./my": "./my.js",
"./i.js": "./i.js",
"./base": "./src/myElement.js",
"./my-map": "./src/components/MyMapElement.js"
},
"scripts": {
"build": "npm run build:feed && npm run build:template && npm run copy",
"build:doc": "npx jsdoc -r -c ./jsdoc-conf.json",
"build:feed": "node ./src/build/feed.js > ./src/feed.json",
"build:template": "node ./src/build/template.js > ./src/template.html",
"copy": "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",
"fix": "npx semistandard --fix",
"test": "npx semistandard && npm run inner:count"
},
"keywords": [
"ndf-web-components",
"my-elements",
"my",
"my-map",
"elements",
"MyElement",
"web components",
"components",
"custom elements",
"pwa"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"semistandard": "^17.0.0",
"servor": "^4.0.2"
}
}