forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"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.4",
"find-up": "^5.0.0",
"fs-extra": "^9.1.0",
"globby": "^11.0.1",
"resolve-package-path": "^4.0.3",
"zod": "^3.20.3"
},
"devDependencies": {
"@packages/ts": "0.0.0-development",
"chai": "4.2.0",
"mocha": "7.0.1"
},
"files": [
"src"
],
"types": "src/index.ts"
}