forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 874 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "example-webpack-options",
"description": "Using default Webpack options to transpile simple tests",
"private": true,
"scripts": {
"check-coverage": "check-coverage Test.js calc.js ParentComponent.js ChildComponent.js",
"cy:open": "node ../../../../scripts/cypress open-ct",
"only-covered": "only-covered Test.js calc.js ParentComponent.js ChildComponent.js",
"test": "node ../../../../scripts/cypress run-ct"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-transform-modules-commonjs": "7.13.8",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@cypress/react": "file:../../dist",
"babel-loader": "8.2.2",
"babel-plugin-istanbul": "6.0.0",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.5.1"
}
}