-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "is-web-component",
"version": "1.6.0",
"license": "MIT",
"keywords": [
"css",
"web-component",
"stenciljs",
"framework"
],
"description": "Is Web Component build with stenciljs",
"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/is-web-component/is-web-component.js",
"files": [
"dist/",
"loader/"
],
"repository": {
"type": "git",
"url": "https://github.com/isnur/is-web-component.git"
},
"homepage": "https://is-web-component.isnur.com",
"scripts": {
"build": "stencil build --docs && npm run doc && stencil build --docs && npm run doc",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"doc": "node src/components/generate-summary.js && npx compodoc -p src/tsconfig.app.json",
"doc:serve": "npm run doc && npx compodoc -s",
"doc:wow": "stencil build --docs-readme"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.11",
"@stencil/core": "1.17.4",
"@stencil/sass": "1.3.2",
"@types/jest": "26.0.15",
"@types/puppeteer": "3.0.2",
"jest": "26.6.1",
"jest-cli": "26.6.1",
"puppeteer": "5.4.1"
}
}