mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-07 23:40:21 -05:00
33 lines
1.0 KiB
JSON
33 lines
1.0 KiB
JSON
{
|
|
"name": "@packages/scaffold-config",
|
|
"version": "0.0.0-development",
|
|
"description": "Logic related to scaffolding new projects using launchpad",
|
|
"main": "index.js",
|
|
"browser": "src/index.ts",
|
|
"scripts": {
|
|
"build-prod": "tsc || echo 'built, with errors'",
|
|
"check-ts": "tsc --noEmit",
|
|
"clean": "rimraf ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
|
|
"clean-deps": "rimraf node_modules",
|
|
"test": "yarn test-unit",
|
|
"test-unit": "mocha -r @packages/ts/register 'test/unit/**' --config ./test/.mocharc.js --exit --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
|
|
},
|
|
"dependencies": {
|
|
"compare-versions": "4.1.3",
|
|
"debug": "^4.3.2",
|
|
"fs-extra": "^9.1.0",
|
|
"globby": "^11.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/ts": "0.0.0-development",
|
|
"chai": "4.2.0",
|
|
"mocha": "7.0.1",
|
|
"rimraf": "3.0.2"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"types": "src/index.ts"
|
|
}
|