UNPKG

atool-test

Version:

Unit testing tool based on dora & mocha & webpack

84 lines (83 loc) 2.06 kB
{ "name": "atool-test", "version": "0.5.5", "description": "Unit testing tool based on dora & mocha & webpack", "keywords": [ "testing", "webpack", "istanbul", "mocha", "react", "babel6", "dora" ], "bin": { "atool-test": "./bin/atool-test" }, "files": [ "bin", "lib", "package.json", "README.md" ], "author": "rjmuqiang@gmail.com", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/ant-tool/atool-test.git" }, "homepage": "https://github.com/ant-tool/atool-test", "dependencies": { "atool-monitor": "0.x", "chai": "~3.5.0", "chalk": "^1.1.1", "chokidar": "^1.4.3", "commander": "~2.9.0", "exeq": "^2.4.0", "glob": "^7.0.0", "html-webpack-plugin": "^2.20.0", "isparta-loader": "^2.0.0", "istanbul": "~0.4.2", "koa-router": "^5.4.0", "koa-webpack-dev-middleware": "^1.1.0", "mocha": "^2.4.5", "mocha-phantomjs": "^4.0.2", "object-assign": "^4.0.1", "sinon": "~1.17.3", "sinon-chai": "~2.8.0", "webpack": "~1.12.14", "atool-build": "~0.11.0", "dora": "~0.4.2", "babel-polyfill": "~6.9.1" }, "devDependencies": { "babel-cli": "~6.3.15", "babel-core": "~6.3.15", "babel-istanbul": "^0.5.9", "babel-plugin-add-module-exports": "~0.1.2", "babel-preset-es2015": "~6.3.13", "babel-preset-stage-0": "~6.3.13", "coveralls": "^2.11.6", "eslint": "^2.2.0", "eslint-config-airbnb": "^6.0.2", "isparta": "~4.0.0", "supertest": "~1.2.0" }, "scripts": { "build": "rm -rf lib && babel src --out-dir lib && cp src/runner.ejs lib/runner.ejs", "build-watch": "babel -w src --out-dir lib", "lint": "eslint src", "prepublish": "npm run build", "test": "npm run build && istanbul cover ./node_modules/.bin/_mocha -- --no-timeouts", "coveralls": "cat ./coverage/lcov.info | coveralls" }, "babel": { "presets": [ "es2015", "stage-0" ], "plugins": [ "add-module-exports" ] } }