1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/package.json
Arunoda Susiripala 1dc52dbc6c New test setup (#640)
* Use jest-cli instead of gulp plugin.

* Use jest-cli instead of gulp plugin.

* Move fixtures into the examples dir.

* Move test code of example app to the basic example.

* Add isolated tests for server/resolve

* Allow tests to use cheerio.

* Use portfinder to get a unique port.

* Move back integration tests into the example dir.

* Introduce next-test-utils.

* Remove gulp-jest

* Add coveralls support.

* Use transpiled version of code in dist.
This is to make sure same file gets covered
by both unit/isolated tests and integration tests.

* Add support for source maps.

* Use code from dist always.

* Use nyc to stop instrument.

* Add integration test suite for production usage.

* Use jest-cli.

* Add support for running e2e tests.

* Check gzipPath with fs.stat before serving
Otherwise, serve package might throw issues other than ENOENT

* Install chromedriver with npm install.

* Install chrome on travis-ci.

* Add --forceExit to Jest.

* Run tests only on Node v6.
That's because selenium-webdriver only supports
Node 6 LTS.

* Use chromedriver NPM module to install chromedriver.

* Use wd as the webdriver client.

* Run chromedriver before tests.

* Run travis for both node 4 and 6

* Remove unwanted npm install script.

* Move some common text utilities to next-test-utils

* Add lint checks and testing in npm prepublish hook.

* Use npm on travis-ci.
We are having some caching issues with yarn and chromedriver.

* Make tests work on windows.\n But chromedriver doesn't work.

* Clean up dependencies.

* Run chromedriver in background without any tools.

* Fix a typo in the code.

* Use ES6 features used in node4 inside the gulpfile.

* Add some comments.

* Add support for running in windows.

* Stop chromedriver properly on windows.

* Fix typos.
2017-01-12 13:14:49 +09:00

120 lines
3.4 KiB
JSON

{
"name": "next",
"version": "2.0.0-beta.16",
"description": "Minimalistic framework for server-rendered React applications",
"main": "./dist/server/next.js",
"license": "MIT",
"repository": "zeit/next.js",
"publishConfig": {
"tag": "beta"
},
"files": [
"dist",
"babel.js",
"link.js",
"css.js",
"head.js",
"document.js",
"prefetch.js",
"router.js"
],
"bin": {
"next": "./dist/bin/next"
},
"scripts": {
"build": "gulp",
"release": "gulp release",
"pretestonly": "gulp start-chromedriver",
"testonly": "cross-env NODE_PATH=test/lib jest \\.test.js",
"posttestonly": "gulp stop-chromedriver",
"pretest": "npm run lint && cross-env NODE_ENV=test npm run release",
"test": "npm run testonly -- --coverage --forceExit",
"coveralls": "nyc --instrument=false --source-map=false report --temp-directory=./coverage --reporter=text-lcov | coveralls",
"lint": "standard 'bin/*' 'client/**/*.js' 'examples/**/*.js' 'lib/**/*.js' 'pages/**/*.js' 'server/**/*.js' 'test/**/*.js'",
"prepublish": "npm run test && npm run release",
"precommit": "npm run lint"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**"
]
},
"dependencies": {
"accepts": "1.3.3",
"ansi-html": "0.0.7",
"babel-core": "6.21.0",
"babel-generator": "6.21.0",
"babel-loader": "6.2.10",
"babel-plugin-module-resolver": "2.4.0",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-class-properties": "6.19.0",
"babel-plugin-transform-object-rest-spread": "6.20.2",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-runtime": "6.20.0",
"case-sensitive-paths-webpack-plugin": "1.1.4",
"cross-spawn": "5.0.1",
"del": "2.2.2",
"friendly-errors-webpack-plugin": "1.1.2",
"glamor": "2.20.20",
"glob-promise": "3.1.0",
"htmlescape": "1.1.1",
"is-windows-bash": "1.0.3",
"json-loader": "0.5.4",
"loader-utils": "0.2.16",
"mime-types": "2.1.13",
"minimist": "1.2.0",
"mkdirp-then": "1.2.0",
"mz": "2.6.0",
"path-match": "1.2.4",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-hot-loader": "3.0.0-beta.6",
"send": "0.14.1",
"source-map-support": "0.4.8",
"strip-ansi": "3.0.1",
"styled-jsx": "0.4.1",
"url": "0.11.0",
"uuid": "3.0.1",
"webpack": "2.2.0-rc.3",
"webpack-dev-middleware": "1.9.0",
"webpack-hot-middleware": "2.15.0",
"write-file-webpack-plugin": "3.4.2"
},
"devDependencies": {
"babel-eslint": "7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-env": "1.1.8",
"benchmark": "2.1.3",
"cheerio": "^0.22.0",
"chromedriver": "^2.26.1",
"coveralls": "2.11.15",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-benchmark": "1.1.1",
"gulp-cached": "1.1.1",
"gulp-notify": "2.2.0",
"husky": "0.12.0",
"jest-cli": "^18.0.0",
"node-fetch": "^1.6.3",
"nyc": "^10.0.0",
"portfinder": "^1.0.10",
"run-sequence": "1.2.2",
"standard": "8.6.0",
"wd": "^1.1.1",
"webpack-stream": "3.2.0",
"cross-env": "^3.1.4"
},
"jest": {
"testEnvironment": "node",
"testPathDirs": [
"test/"
]
}
}