-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 968 Bytes
/
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
{
"name": "miha",
"version": "0.0.1",
"description": "Stencil Component Starter",
"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/miha/miha.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"css.sass": "node-sass --output ./src/components/styles/ src/styles/index.scss --output-style compressed",
"start": "npm run css.sass&&stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll"
},
"devDependencies": {
"@stencil/core": "^1.0.7",
"@stencil/sass": "^1.0.1"
},
"license": "MIT",
"dependencies": {
"raf": "^3.4.1",
"resize-observer-polyfill": "^1.5.1"
}
}