mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-25 16:40:03 -05:00
28189fb577
* chore: update build-npm-modules script * chore: update build-npm-modules script * chore: update build-npm-modules script * chore: update build-npm-modules script * [run ci] * we can't clean without building after * update commands * add config for data-context build step * fix output configurations for npm packages, add gitignores * revert changes to config and data-context build steps * run with cache * fix outputs for cli * actually fix outputs * test with cache * chore: remove check-ts from Gulp and use Nx * try limiting concurrency * try concurrency 1 * add check-ts to packages where it is missing --------- Co-authored-by: jordanpowell88 <jordan@jpdesigning.com>
30 lines
714 B
JSON
30 lines
714 B
JSON
{
|
|
"name": "@packages/icons",
|
|
"version": "0.0.0-development",
|
|
"description": "Cypress Icons",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"check-ts": "tsc --noEmit",
|
|
"build": "ts-node ./scripts/build.ts && ts-node ./scripts/ico.ts",
|
|
"test-unit": "NODE_ENV=test mocha -r @packages/ts/register test/*.ts",
|
|
"test": "yarn test-unit",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^8.0.3",
|
|
"@types/to-ico": "^1.1.1",
|
|
"chai": "^4.2.0",
|
|
"fs-extra": "9.1.0",
|
|
"mocha": "^8.1.3",
|
|
"to-ico": "^1.1.5"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"license": "MIT",
|
|
"author": "Brian Mann"
|
|
}
|