-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "@popul-ar/user-media",
"version": "0.1.1",
"description": "Web component wrapper for the getUserMedia API",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"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/user-media/user-media.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/popul-ar/user-media.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"publish": "npm run build && npm publish"
},
"dependencies": {
"@stencil/core": "^2.13.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"jest-cli": "^27.4.5",
"puppeteer": "^19.3.0"
},
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/popul-ar/user-media/issues"
},
"homepage": "https://github.com/popul-ar/user-media#readme",
"author": "positlabs"
}