mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 15:39:28 -05:00
67 lines
1.5 KiB
JSON
67 lines
1.5 KiB
JSON
{
|
|
"name": "@cypress/angular",
|
|
"version": "0.0.0-development",
|
|
"description": "Test Angular Components using Cypress",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "tsc || echo 'built, with type errors'",
|
|
"build-prod": "yarn build",
|
|
"check-ts": "tsc --noEmit"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@angular/common": "^14.0.6",
|
|
"@angular/core": "^14.0.6",
|
|
"@angular/platform-browser-dynamic": "^14.0.6",
|
|
"typescript": "~4.2.3",
|
|
"zone.js": "~0.11.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/common": ">=13",
|
|
"@angular/core": ">=13",
|
|
"@angular/platform-browser-dynamic": ">=13",
|
|
"zone.js": ">=0.11.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"types": "dist/index.d.ts",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress/blob/master/npm/angular/#readme",
|
|
"author": "Jordan Powell",
|
|
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fangular&template=1-bug-report.md&title=",
|
|
"keywords": [
|
|
"angular",
|
|
"cypress",
|
|
"cypress-io",
|
|
"test",
|
|
"testing"
|
|
],
|
|
"contributors": [
|
|
{
|
|
"name": "Jordan Powell",
|
|
"social": "@jordanpowell88"
|
|
},
|
|
{
|
|
"name": "Zach Williams",
|
|
"social": "@ZachJW34"
|
|
}
|
|
],
|
|
"module": "dist/index.js",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"standard": {
|
|
"globals": [
|
|
"Cypress",
|
|
"cy",
|
|
"expect"
|
|
]
|
|
}
|
|
}
|