-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.7 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.7 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
59
{
"name": "stencil-chuck-norris-jokes",
"version": "0.0.0-development",
"description": "Stencil Component Starter",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"jsnext:main": "dist/esm/index.mjs",
"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 --no-cache",
"test.watch": "jest --watch --no-cache",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"dependencies": {},
"devDependencies": {
"@stencil/core": "^1.5.4",
"@stencil/sass": "^1.0.1",
"@stencil/utils": "0.0.5",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"jest": "^24.9.0",
"semantic-release": "^15.13.24",
"travis-deploy-once": "^5.0.11"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickvaler/stencil-chuck-norris-jokes"
},
"author": "Patrick Valer <hello@patrickvaler.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickvaler/stencil-chuck-norris-jokes"
},
"homepage": "https://github.com/patrickvaler/stencil-chuck-norris-jokes",
"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"
]
}
}