-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 853 Bytes
/
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
{
"name": "cypress-element",
"version": "0.2.0",
"keywords": [
"cypress"
],
"author": "DragorWW <[email protected]>",
"license": "ISC",
"description": "Composition api for cypress",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"start": "cypress open",
"test": "cypress run",
"build": "tsc",
"prettier": "prettier --write './(src|cypress)/**/*.ts'",
"docs:start": "npx docsify-cli serve ./docs"
},
"devDependencies": {
"cypress": "^9.6.1",
"prettier": "2.6.2",
"typescript": "^4.6.4"
},
"bugs": {
"url": "https://github.com/DragorWW/cypress-element/issues"
},
"homepage": "https://github.com/DragorWW/cypress-element#readme",
"repository": {
"type": "git",
"url": "https://github.com/DragorWW/cypress-element.git"
}
}