-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 920 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
37
38
39
40
41
{
"name": "@bahmutov/cypress-esbuild-preprocessor",
"version": "0.0.0-development",
"description": "Bundle Cypress specs using esbuild",
"main": "src",
"typings": "src/index.d.ts",
"files": [
"src"
],
"scripts": {
"test": "cypress run",
"watch": "cypress open",
"semantic-release": "semantic-release",
"lint": "tsc --noEmit"
},
"keywords": [
"cypress-preprocessor"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"devDependencies": {
"cypress": "13.15.2",
"esbuild": "0.24.0",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"typescript": "5.6.3"
},
"dependencies": {
"debug": "4.3.7"
},
"peerDependencies": {
"esbuild": ">=0.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-esbuild-preprocessor.git"
},
"publishConfig": {
"access": "public"
}
}