mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 15:39:28 -05:00
38 lines
911 B
JavaScript
38 lines
911 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 is a next generation front end testing tool built for the modern web',
|
|
'homepage': 'https://cypress.io',
|
|
'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',
|
|
'component',
|
|
'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}";',
|
|
},
|
|
}
|