-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "was-this-helpful",
"version": "0.0.2",
"description": "was-this-helpful is a Stencil.js web component that gives you a simple 'Was this helpful?' form.",
"repository": {
"type": "git",
"url": "https://github.com/anaptfox/was-this-helpful"
},
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/was-this-helpful/was-this-helpful.esm.js",
"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"
},
"dependencies": {
"@stencil/core": "^2.0.1",
"stencil-inline-svg": "^1.1.0",
"uuid": "^8.3.2"
},
"license": "MIT",
"devDependencies": {
"@stencil/react-output-target": "^0.0.9",
"@types/jest": "^26.0.23",
"@types/puppeteer": "^5.4.3",
"jest": "^27.0.5",
"jest-svg-transformer": "^1.0.0",
"puppeteer": "^10.0.0",
"workbox-build": "6.1.5"
}
}