mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-22 16:18:45 -05:00
37 lines
874 B
JavaScript
37 lines
874 B
JavaScript
exports['package.json build outputs expected properties 1'] = {
|
|
"name": "test",
|
|
"engines": "test engines",
|
|
"version": "x.y.z",
|
|
"buildInfo": "replaced by normalizePackageJson",
|
|
"description": "Cypress.io end to end testing tool",
|
|
"homepage": "https://github.com/cypress-io/cypress",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/cypress-io/cypress/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"keywords": [
|
|
"automation",
|
|
"browser",
|
|
"cypress",
|
|
"cypress.io",
|
|
"e2e",
|
|
"end-to-end",
|
|
"integration",
|
|
"mocks",
|
|
"runner",
|
|
"spies",
|
|
"stubs",
|
|
"test",
|
|
"testing"
|
|
],
|
|
"types": "types",
|
|
"scripts": {
|
|
"postinstall": "node index.js --exec install",
|
|
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
|
|
}
|
|
}
|