-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "@hamedstack/cypress",
"version": "1.0.0",
"description": "A bunch of useful Cypress commands with full TypeScript support.",
"scripts": {
"build": "rimraf dist && tsc && tsc --build tsconfig.commonjs.json",
"release": "npm publish --access public"
},
"keywords": [
"javascript",
"typescript",
"cypress",
"utilities",
"commands",
"custom-commands",
"helpers",
"promise",
"async",
"await",
"screenplay",
"screenplay-pattern"
],
"homepage": "https://github.com/HamedStack/HamedStack.Cypress",
"bugs": {
"url": "https://github.com/HamedStack/HamedStack.Cypress/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HamedStack/HamedStack.Cypress"
},
"source": "index.ts",
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"types": "index.d.ts",
"typings": "index.d.ts",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"author": "Hamed Fathi",
"license": "MIT",
"devDependencies": {
"cypress": "^12.3.0",
"typescript": "^4.1.6",
"rimraf": "^5.0.5"
}
}