UNPKG

intern

Version:

Intern. A next-generation code testing stack for JavaScript.

185 lines (184 loc) 4.79 kB
{ "name": "intern", "version": "4.2.3", "description": "Intern. A next-generation code testing stack for JavaScript.", "homepage": "http://theintern.io/", "license": "BSD-3-Clause", "bugs": "https://github.com/theintern/intern/issues", "files": [ "index.*", "*.js", "*.js.map", "bin/*.js", "favicon.*", "browser/*.html", "browser/config.js", "browser/intern.js", "browser/remote.js", "lib", "loaders", "tasks", "tests", "types" ], "keywords": [ "javascript", "test", "unit", "testing", "ci", "continuous integration", "bdd", "tdd", "xunit", "istanbul", "chai", "dojo", "toolkit", "selenium", "sauce labs", "code coverage" ], "repository": { "type": "git", "url": "https://github.com/theintern/intern.git" }, "bin": { "intern": "./bin/intern.js" }, "scripts": { "build": "intern-dev-clean && concurrently intern-dev-build intern-dev-api", "devpack": "intern-dev-build && cd _build/src && npm pack && cp *.tgz ../../", "clean": "intern-dev-clean", "lint": "intern-dev-lint", "release": "cross-env INTERN_BUILD=release intern-dev-release", "start": "cross-env NODE_PATH=_build node _tests/src/bin/intern.js serveOnly", "test": "cross-env NODE_PATH=_build node _tests/src/bin/intern.js", "preci": "intern-dev-build", "ci": "npm test config=@ci", "watch": "intern-dev-build watch", "precommit": "lint-staged" }, "dependencies": { "@dojo/core": "~2.0.0", "@dojo/has": "~2.0.0", "@dojo/interfaces": "~0.2.1", "@dojo/shim": "~2.0.0", "@theintern/digdug": "~2.1.2", "@theintern/leadfoot": "~2.1.1", "@types/benchmark": "~1.0.30", "@types/chai": "~4.1.2", "@types/charm": "~1.0.0", "@types/diff": "~3.5.1", "@types/express": "~4.11.1", "@types/http-errors": "~1.6.1", "@types/istanbul-lib-coverage": "~1.1.0", "@types/istanbul-lib-hook": "~1.0.0", "@types/istanbul-lib-instrument": "~1.7.1", "@types/istanbul-lib-report": "~1.1.0", "@types/istanbul-lib-source-maps": "~1.2.1", "@types/istanbul-reports": "~1.1.0", "@types/lodash": "~4.14.107", "@types/mime-types": "~2.1.0", "@types/platform": "~1.3.0", "@types/resolve": "0.0.7", "@types/shell-quote": "~1.6.0", "@types/statuses": "~1.3.0", "@types/ws": "~4.0.2", "benchmark": "~2.1.4", "body-parser": "~1.18.2", "chai": "~4.1.2", "charm": "~1.0.2", "diff": "~3.5.0", "express": "~4.16.3", "glob": "~7.1.1", "http-errors": "~1.6.3", "istanbul-lib-coverage": "~1.2.0", "istanbul-lib-hook": "~1.1.0", "istanbul-lib-instrument": "~1.10.0", "istanbul-lib-report": "~1.1.3", "istanbul-lib-source-maps": "~1.2.4", "istanbul-reports": "~1.3.0", "lodash": "~4.17.5", "mime-types": "~2.1.18", "minimatch": "~3.0.4", "platform": "~1.3.5", "resolve": "~1.7.1", "shell-quote": "~1.6.1", "source-map": "~0.6.1", "statuses": "~1.5.0", "tslib": "~1.9.0", "ws": "~5.1.1" }, "devDependencies": { "@dojo/loader": "~0.1.1", "@theintern/dev": "~0.7.0", "@types/body-parser": "~1.16.4", "@types/glob": "~5.0.35", "@types/grunt": "~0.4.21", "@types/jsdom": "~11.0.2", "@types/node": "~9.6.5", "@types/shelljs": "~0.7.8", "@types/sinon": "~2.3.2", "@types/systemjs": "~0.20.2", "@types/webpack": "~4.1.3", "ajv": "~6.4.0", "concurrently": "~3.5.0", "cross-env": "~5.2.0", "css-loader": "~0.28.11", "jsdom": "~11.8.0", "lint-staged": "~7.0.5", "pre-commit": "~1.2.2", "prettier": "~1.12.1", "sinon": "~2.3.6", "source-map-support": "~0.5.4", "style-loader": "~0.20.3", "stylus": "~0.54.5", "stylus-loader": "~3.0.2", "ts-loader": "~4.2.0", "ts-node": "~6.0.0", "umd-compat-loader": "~2.1.0", "webpack": "~4.6.0", "webpack-cli": "~2.0.14" }, "internDev": { "configs": [ "tsconfig.json", "tests/tsconfig.json", "tests/examples/tsconfig.json" ], "resources": { "_build": [ "src/**/*.{styl,d.ts,html,js,png}", "src/**/!(tsconfig).json" ], "_build/src": [ "types/**", "bin/**" ], "_tests": [ "tests/**/*.{xml,d.ts,js}", "src/**/*.{styl,d.ts,html,js,png}" ] } }, "lint-staged": { "src/**/*.{ts,json,css}": [ "prettier --write", "git add" ], "tests/**/*.{ts,json,css}": [ "prettier --write", "git add" ], "*.ts": [ "prettier --write", "git add" ], "{intern,tsconfig}.json": [ "prettier --write", "git add" ] }, "pre-commit": "precommit" }