-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "code-coverage-vue-example",
"version": "1.0.0",
"description": "Code coverage for Vue single file components from Cypress.io end-to-end tests",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "start-test 8080 cy:open",
"report:coverage": "nyc report",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com> (https://glebbahmutov.com/)",
"private": true,
"license": "MIT",
"devDependencies": {
"@babel/core": "7.26.9",
"@cypress/code-coverage": "1.14.0",
"babel-loader": "8.4.1",
"babel-plugin-istanbul": "5.2.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-3": "6.24.1",
"coveralls": "3.1.1",
"css-loader": "3.6.0",
"cypress": "3.8.3",
"html-webpack-plugin": "3.2.0",
"istanbul-instrumenter-loader": "3.0.1",
"istanbul-lib-coverage": "2.0.5",
"node-sass": "4.14.1",
"nyc": "14.1.1",
"sass": "1.85.1",
"sass-loader": "7.3.1",
"script-ext-html-webpack-plugin": "2.1.5",
"start-server-and-test": "1.15.4",
"vue": "2.7.16",
"vue-loader": "15.11.1",
"vue-template-compiler": "2.7.16",
"webpack": "4.47.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.3"
}
}