-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "cypress-workshop",
"version": "1.0.0",
"description": "This is Workshop about Cypress",
"main": "index.js",
"scripts": {
"test": "npm run cypress:run",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"clean": "rm -rf dist",
"build": "npm run lint && npm run clean && tsc",
"lint": "tslint --project tsconfig.json test/**/*.ts src/**/*.ts cypress/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juan-carvajal/cypress-workshop.git"
},
"keywords": [
"ui-testing",
"dojo",
"practice",
"cypress"
],
"author": "Juan David Carvajal juan030698@hotmail.com juan-carvajal",
"license": "MIT",
"bugs": {
"url": "https://github.com/juan-carvajal/cypress-workshop/issues"
},
"homepage": "https://github.com/juan-carvajal/cypress-workshop#readme",
"dependencies": {},
"devDependencies": {
"@types/jasminewd2": "^2.0.8",
"@types/node": "^14.0.25",
"cypress": "^4.11.0",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.7"
}
}