-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.66 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
{
"name": "@currents/cli",
"version": "4.0.5",
"license": "MIT",
"main": "./dist",
"typings": "./dist",
"author": {
"name": "Currents Software Inc",
"email": "andrew@currents.dev"
},
"scripts": {
"build": "run-s esbuild tsc",
"dev": "run-p watch:*",
"release": "release-it",
"clean": "rimraf dist",
"tsc": "tsc",
"esbuild": "esbuild ./src/index.ts --bundle --minify --platform=node --target=node14 --packages=external --outdir=dist",
"watch:tsc": "run-s \"tsc --watch --preserveWatchOutput\"",
"watch:swc": "run-s \"esbuild --watch\""
},
"repository": {
"type": "git",
"url": "https://github.com/currents-dev/cli.git"
},
"files": [
"bin/*",
"dist/*"
],
"bin": {
"currents": "bin/currents.js"
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"cy2": "4.0.8"
},
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.1",
"@types/node": "^18.11.3",
"cypress": "^13.15.1",
"esbuild": "^0.16.9",
"npm-run-all": "^4.1.5",
"release-it": "^17.10.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"overrides": {
"semver": "7.5.2"
},
"keywords": [
"cypress",
"e2e",
"tests",
"currents",
"sorry-cypress",
"cypress cloud"
],
"release-it": {
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"header": "# Changelog",
"preset": {
"name": "conventionalcommits"
},
"infile": "CHANGELOG.md"
}
},
"hooks": {
"before:init": "run-s clean build"
}
}
}