-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "stencil-e2e-tests",
"private": true,
"main": "dist/stencil-e2e-tests.js",
"scripts": {
"build": "npm run clean && stencil build --prerender",
"clean": "rimraf dist",
"test": "stencil test --spec --e2e --headless",
"test:ci": "stencil test --spec --e2e --ci",
"test:unit": "stencil test --spec",
"test:e2e": "stencil test --e2e --headless"
},
"dependencies": {
"@stencil/core": "0.16.0"
},
"devDependencies": {
"@stencil/utils": "0.0.5",
"@types/jest": "23.3.8",
"@types/puppeteer": "1.11.0",
"jest": "23.6.0",
"jest-cli": "^23.6.0",
"jest-environment-node": "23.4.0",
"puppeteer": "1.8.0",
"rimraf": "2.6.2",
"typescript": "^3.1.3"
},
"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"
]
}
}