-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
44
45
46
47
48
49
50
51
{
"name": "quizes",
"version": "1.5.0",
"description": "OS Webcomponent to create a quiz",
"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/quizes/quizes.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",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:Antonio-Laguna/Quizes.git"
},
"author": {
"url": "https://antonio.laguna.es",
"email": "antonio@laguna.es",
"name": "Antonio Laguna"
},
"keywords": [
"stencil",
"stenciljs",
"quizes"
],
"dependencies": {
"@stencil/core": "^2.8.1",
"classnames": "^2.3.1",
"tinybounce": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.2.4",
"jest-cli": "^27.2.4",
"puppeteer": "^10.4.0"
},
"license": "MIT"
}