forked from testdouble/cypress-capybara
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "cypress-capybara",
"version": "0.0.4",
"description": "Capybara finders re-implemented as custom Cypress commands",
"main": "index.js",
"scripts": {
"style": "standard --fix",
"start": "http-server node_modules/cypress-example-kitchensink/app -c-1 --silent -p 8081",
"test": "cypress run",
"ci": "npm run style && run-p --race start test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testdouble/cypress-capyabara.git"
},
"keywords": [
"Cypress",
"Capybara"
],
"author": "Justin Searls <searls@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/testdouble/cypress-capyabara/issues"
},
"homepage": "https://github.com/testdouble/cypress-capyabara#readme",
"devDependencies": {
"cypress": "^3.0.2",
"cypress-example-kitchensink": "github:searls/cypress-example-kitchensink",
"http-server": "^0.11.1",
"npm-run-all": "^4.1.3",
"standard": "^11.0.1"
},
"standard": {
"globals": [
"describe",
"context",
"beforeEach",
"it",
"cy",
"Cypress"
]
}
}