Skip to content

Instantly share code, notes, and snippets.

@nerdic-coder
Created May 25, 2018 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nerdic-coder/478ef7696783dc1478a83589a53eb76f to your computer and use it in GitHub Desktop.
Save nerdic-coder/478ef7696783dc1478a83589a53eb76f to your computer and use it in GitHub Desktop.
stencil-container-package.json
{
"name": "stencil-container",
"version": "0.0.2",
"description": "Stencil Container with if-statements and for-loops",
"module": "dist/esm/index.js",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "jest",
"test.watch": "jest --watch"
},
"dependencies": {},
"devDependencies": {
"@stencil/core": "^0.9.1",
"@stencil/dev-server": "latest",
"@stencil/utils": "latest",
"@types/jest": "^21.1.1",
"jest": "^21.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdic-coder/stencil-container.git"
},
"author": "Johan Axelsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/nerdic-coder/stencil-container/issues"
},
"homepage": "https://github.com/nerdic-coder/stencil-container",
"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"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment