-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 993 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
{
"name": "elation",
"description": "Elation Javascript Component Framework",
"version": "2.4.1",
"main": "build/elation.js",
"style": "build/elation.css",
"unpkg": "build/elation.js",
"jsdelivr": "build/elation.js",
"files": [
"build/",
"components/",
"elation",
"scripts/build.sh",
"util/",
"LICENSE",
"README.md"
],
"author": "James Baicoianu",
"license": "MIT",
"scripts": {
"build": "bash scripts/build.sh",
"prepublishOnly": "npm run build",
"docs": "rm -rf docs/js && jsdoc -c jsdoc.conf.json && mkdir -p docs/js/styles && cp jsdoc-plugins/better-docs-dark.css docs/js/styles/dark.css",
"deploy:docs": "bash scripts/deploy-docs.sh"
},
"devDependencies": {
"better-docs": "^2.7.3",
"jsdoc": "^4.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/jbaicoianu/elation"
},
"keywords": [
"elation",
"components",
"custom-elements",
"web-components",
"ui"
]
}