-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 849 Bytes
/
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
{
"name": "stencil-slots",
"private": true,
"main": "dist/stencil-slots.js",
"scripts": {
"build": "npm run clean && stencil build --prerender",
"clean": "rimraf dist",
"test": "stencil test --e2e --headless",
"test:ci": "stencil test --e2e --ci"
},
"dependencies": {
"@stencil/core": "^0.16.0"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/puppeteer": "1.11.0",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"puppeteer": "1.11.0",
"rimraf": "^2.6.2"
},
"jest": {
"clearMocks": true,
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}