mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-26 00:50:41 -05:00
60 lines
1.8 KiB
JSON
60 lines
1.8 KiB
JSON
{
|
|
"name": "create-cypress-tests",
|
|
"version": "0.0.0-development",
|
|
"description": "Cypress smart installation wizard",
|
|
"main": "dist/src/main.js",
|
|
"scripts": {
|
|
"build": "yarn prepare-example && tsc -p ./tsconfig.json && node scripts/example copy-to ./dist/initial-template && yarn prepare-copy-templates",
|
|
"prepare-example": "node scripts/example copy-to ./initial-template",
|
|
"prepare-copy-templates": "node scripts/copy-templates copy-to ./dist/src",
|
|
"test": "cross-env TS_NODE_PROJECT=./tsconfig.test.json mocha --config .mocharc.json './src/**/*.test.ts'",
|
|
"test:watch": "yarn test -w",
|
|
"lint": "eslint --ext .js,.ts,.json, ."
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.5.4",
|
|
"@babel/plugin-transform-typescript": "^7.2.0",
|
|
"@babel/template": "^7.5.4",
|
|
"@babel/types": "^7.5.0",
|
|
"bluebird": "3.7.2",
|
|
"chalk": "4.1.0",
|
|
"cli-highlight": "2.1.10",
|
|
"commander": "6.2.1",
|
|
"find-up": "5.0.0",
|
|
"fs-extra": "^9.1.0",
|
|
"glob": "^7.1.6",
|
|
"inquirer": "8.2.4",
|
|
"ora": "^5.1.0",
|
|
"recast": "0.20.4",
|
|
"semver": "7.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/babel__core": "^7.1.2",
|
|
"@types/inquirer": "8.2.4",
|
|
"@types/mock-fs": "4.10.0",
|
|
"@types/node": "18.17.5",
|
|
"@types/ora": "^3.2.0",
|
|
"@types/semver": "7.5.0",
|
|
"copy": "0.3.2",
|
|
"mocha": "7.1.1",
|
|
"mock-fs": "5.2.0",
|
|
"snap-shot-it": "7.9.3",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin"
|
|
],
|
|
"bin": {
|
|
"create-cypress-tests": "dist/src/index.js"
|
|
},
|
|
"license": "MIT",
|
|
"repository": "https://github.com/cypress-io/cypress.git",
|
|
"homepage": "https://github.com/cypress-io/cypress/blob/develop/npm/create-cypress-tests/#readme",
|
|
"nx": {
|
|
"implicitDependencies": [
|
|
"@packages/example"
|
|
]
|
|
}
|
|
}
|