-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.33 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
{
"name": "stencil-context",
"version": "0.0.3",
"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/stencil-context/stencil-context.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"clean": "rimraf .stencil ndist loader",
"coverage:report": "cat ./coverage/lcov.info | coveralls",
"start": "stencil build --dev --watch --serve",
"pretest": "npm run build",
"test": "stencil test --spec --e2e --coverage --collectCoverageFrom=src/components/stencil-*/*.ts{,x} --collectCoverageFrom=src/utils/**.ts{,x}",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"devDependencies": {
"@stencil/core": "^1.8.0",
"@types/jest": "24.0.23",
"@types/puppeteer": "1.20.2",
"conventional-changelog-cli": "^2.0.27",
"coveralls": "^3.0.7",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"puppeteer": "2.0.0",
"rimraf": "^3.0.0"
},
"license": "MIT"
}