-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.09 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
41
42
43
44
45
46
47
48
{
"name": "@stencil-community/helmet",
"version": "0.3.3",
"description": "Declaratively update the head from a Stencil app.",
"main": "dist/stencil-helmet.js",
"types": "dist/stencil-helmet.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "jest",
"prepublish": "npm run build"
},
"author": "Ionic Team",
"license": "MIT",
"homepage": "https://github.com/stencil-community/stencil-helmet",
"repository": {
"type": "git",
"url": "git+https://github.com/stencil-community/stencil-helmet.git"
},
"bugs": {
"url": "https://github.com/stencil-community/stencil-helmet"
},
"devDependencies": {
"@stencil/core": "^2.3.0",
"@types/jest": "26.0.5",
"jest": "26.6.3",
"np": "^3.1.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}