This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "cypress-rollup-preprocessor",
"version": "1.2.0",
"description": "Cypress preprocessor for bundling JavaScript via rollup",
"main": "dist/index.js",
"scripts": {
"prebuild": "shx rm -rf dist",
"build": "rollup --config rollup.config.ts",
"coverage": "nyc report --reporter=text-lcov > coverage/lcov.info",
"lint": "eslint --ext .js,.jsx,.json,.ts,.tsx .",
"release": "npx semantic-release",
"test": "nyc --reporter=html --reporter=text mocha test/**/*.spec.*"
},
"dependencies": {},
"devDependencies": {
"@cypress/eslint-plugin-dev": "^5.3.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/bluebird": "^3.5.32",
"@types/bluebird-retry": "^0.11.4",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^11.0.0",
"@types/mocha": "^10.0.0",
"@types/mocha-each": "^2.0.0",
"@types/sinon": "^17.0.0",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.22.0",
"bluebird": "^3.7.2",
"bluebird-retry": "^0.11.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cross-spawn": "^7.0.3",
"cypress": "^13.2.0",
"eslint": "^7.7.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-mocha": "^10.0.5",
"mocha": "^10.0.0",
"mocha-each": "^2.0.1",
"nyc": "^15.1.0",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.35.0",
"semantic-release": "^19.0.2",
"shx": "^0.3.2",
"sinon": "^17.0.0",
"sinon-chai": "^3.5.0",
"snap-shot-it": "^7.9.3",
"ts-node": "^10.0.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"rollup": "2.x"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:lmarqs/cypress-rollup-preprocessor.git"
},
"homepage": "https://lmarqs.github.io/cypress-rollup-preprocessor",
"author": {
"name": "Lucas Marques de Paula",
"url": "https://github.com/lmarqs"
},
"bugs": "https://github.com/lmarqs/cypress-rollup-preprocessor/issues",
"keywords": [
"cypress",
"cypress-plugin",
"cypress-preprocessor",
"cypress-rollup-preprocessor",
"rollup"
]
}