mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-26 08:59:03 -06:00
76 lines
2.0 KiB
JSON
76 lines
2.0 KiB
JSON
{
|
|
"name": "cypress",
|
|
"version": "0.0.0",
|
|
"description": "dev build project for Cypress NPM package",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"cypress": "bin/cypress"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"pretest": "npm run lint && npm run test-dependencies",
|
|
"test": "npm run test-unit",
|
|
"test-unit": "mocha",
|
|
"test-watch": "mocha --watch",
|
|
"test-dependencies": "deps-ok && dependency-check . --no-dev",
|
|
"lint": "$(bin-up eslint) --fix *.js bin/* lib/*.js lib/**/*.js test/*.js test/**/*.js",
|
|
"prebuild": "./scripts/build.sh",
|
|
"build": "node ./scripts/build.js",
|
|
"prerelease": "npm run build",
|
|
"release": "cd build && releaser --no-node --no-changelog",
|
|
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
|
|
},
|
|
"dependencies": {
|
|
"bluebird": "3.5.0",
|
|
"chalk": "1.1.3",
|
|
"commander": "2.9.0",
|
|
"common-tags": "1.4.0",
|
|
"debug": "2.6.8",
|
|
"extract-zip": "1.6.5",
|
|
"fs-extra": "1.0.0",
|
|
"getos": "2.8.4",
|
|
"glob": "7.1.2",
|
|
"is-ci": "1.0.10",
|
|
"lodash": "4.17.4",
|
|
"minimist": "1.2.0",
|
|
"progress": "1.1.8",
|
|
"ramda": "0.24.1",
|
|
"request": "2.81.0",
|
|
"request-progress": "0.3.1",
|
|
"tmp": "0.0.31",
|
|
"url": "0.11.0",
|
|
"xvfb": "cypress-io/node-xvfb#22e3783c31d81ebe64d8c0df491ea00cdc74726a",
|
|
"yauzl": "2.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/releaser": "^0.2.1",
|
|
"babel-cli": "^6.24.1",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"bin-up": "^1.0.1",
|
|
"chai": "^3.5.0",
|
|
"clear-module": "^2.1.0",
|
|
"dependency-check": "^2.8.0",
|
|
"deps-ok": "^1.2.0",
|
|
"mocha": "^3.2.0",
|
|
"nock": "^9.0.9",
|
|
"sinon": "^2.1.0",
|
|
"sinon-chai": "^2.9.0",
|
|
"snap-shot": "^2.17.0"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"index.js"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"author": "Brian Mann",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/cypress-io/cypress/issues"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress"
|
|
}
|