-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
68 lines (68 loc) · 2.32 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
{
"name": "cypress-commands",
"version": "3.0.0",
"description": "A collection of Cypress commands to extend and complement the default commands",
"license": "MIT",
"main": "dist/cypress-commands.js",
"module": "dist/cypress-commands.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "npm run test:source",
"test:source": "start-server-and-test start:server http://localhost:1337 run:cypress",
"test:bundle": "start-server-and-test start:server http://localhost:1337 run:cypress:bundle",
"run:cypress": "npm run run:cypress:source",
"run:cypress:source": "cypress run --config supportFile=cypress/support/source.js",
"run:cypress:bundle": "cypress run --config supportFile=cypress/support/bundle.js",
"start": "npm run start:source",
"start:server": "static-server app -p 1337",
"start:source": "start-server-and-test start:server http://localhost:1337 start:cypress",
"start:bundle": "start-server-and-test start:server http://localhost:1337 start:cypress:bundle",
"start:cypress": "npm run start:cypress:source",
"start:cypress:source": "cypress open --config supportFile=cypress/support/source.js",
"start:cypress:bundle": "cypress open --config supportFile=cypress/support/bundle.js",
"lint": "eslint ./",
"bundle": "rollup -c",
"prepublishOnly": "npm run lint && npm run bundle && npm run test:bundle"
},
"author": {
"name": "Sander van Beek"
},
"repository": {
"type": "git",
"url": "https://github.com/Lakitna/cypress-commands"
},
"bugs": {
"url": "https://github.com/Lakitna/cypress-commands/issues"
},
"keywords": [
"Cypress",
"command",
"attribute",
"text",
"to"
],
"devDependencies": {
"chai-string": "^1.5.0",
"cypress": "^11.0.1",
"eslint": "^8.27.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sonarjs": "^0.16.0",
"request": "^2.88.2",
"rollup": "^2.75.6",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-json": "^4.0.0",
"start-server-and-test": "^1.14.0",
"static-server": "^2.2.1",
"typescript": "^4.7.3"
},
"dependencies": {
"path-browserify": "^1.0.1"
}
}