forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 KB
/
package.json
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
{
"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"
}