This repository was archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.74 KB
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
52
53
54
55
56
57
58
{
"name": "@code-dimension/stencil-components",
"version": "0.0.0-beta.1",
"description": "Stencil Components",
"main": "dist/collection/index.js",
"browser": "dist/stencilcomponents.js",
"types": "dist/collection/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build-prod": "npm run lint && stencil build && npm run coverage",
"build": "npm run lint && stencil build && npm test",
"coverage": "jest --no-cache --coverage && cat ./coverage/lcov.info | npx coveralls",
"test": "jest --no-cache",
"lint": "npx tslint -p tsconfig.json",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"prepublish": "npm run build",
"start": "npm run dev",
"start-prod": "sd concurrent \"stencil build --watch\" \"stencil-dev-server\" "
},
"dependencies": {
"@stencil/core": "0.0.6-10"
},
"devDependencies": {
"@stencil/dev-server": "0.0.17",
"@stencil/utils": "0.0.4",
"@types/jest": "21.1.2",
"coveralls": "3.0.0",
"jest": "21.2.1",
"tslint": "5.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeDimension/stencil-components.git"
},
"author": "Code Dimension",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeDimension/stencil-components"
},
"homepage": "https://github.com/CodeDimension/stencil-components",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}