-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "bcd-web-components",
"version": "1.0.12",
"description": "BCDel89's web component library",
"homepage": "http://buddycdelaune.com",
"repository": {
"type": "git",
"url": "https://github.com/BCDel89/bcd-web-components"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/webcomponents/webcomponents.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"clean": "rimraf dist",
"start": "npm run clean && stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"@stencil/core": "^1.12.2",
"@stencil/sass": "^1.3.1",
"puppeteer": "^3.1.0"
},
"license": "MIT",
"dependencies": {}
}