2019-04-30 14:04:54 +00:00
|
|
|
{
|
|
|
|
"name": "embark-test-runner",
|
2019-08-28 19:52:21 +00:00
|
|
|
"version": "4.1.1",
|
2019-04-30 14:04:54 +00:00
|
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
|
|
"contributors": [],
|
|
|
|
"description": "Embark Testrunner",
|
|
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embark-test-runner#readme",
|
|
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
|
|
"keywords": [
|
|
|
|
"blockchain",
|
|
|
|
"dapps",
|
|
|
|
"ethereum",
|
|
|
|
"ipfs",
|
|
|
|
"serverless",
|
|
|
|
"solc",
|
|
|
|
"solidity"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"directory": "packages/embark-test-runner",
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
|
|
},
|
2019-09-07 19:55:24 +00:00
|
|
|
"main": "./dist/lib/index.js",
|
2019-04-30 14:04:54 +00:00
|
|
|
"scripts": {
|
2019-05-02 18:24:38 +00:00
|
|
|
"build": "cross-env BABEL_ENV=node babel src --extensions \".js\" --out-dir dist --root-mode upward --source-maps",
|
2019-04-30 14:04:54 +00:00
|
|
|
"ci": "npm run qa",
|
|
|
|
"clean": "npm run reset",
|
|
|
|
"lint": "npm-run-all lint:*",
|
|
|
|
"lint:js": "eslint src/",
|
|
|
|
"// lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
|
|
|
"package": "npm pack",
|
|
|
|
"// qa": "npm-run-all lint typecheck build package",
|
|
|
|
"qa": "npm-run-all lint build package",
|
|
|
|
"reset": "npx rimraf dist embark-*.tgz package",
|
|
|
|
"start": "npm run watch",
|
|
|
|
"// typecheck": "tsc",
|
|
|
|
"watch": "run-p watch:*",
|
|
|
|
"watch:build": "npm run build -- --verbose --watch",
|
2019-09-07 19:55:24 +00:00
|
|
|
"// watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch",
|
|
|
|
"test": "mocha dist/test/**/*.js"
|
2019-04-30 14:04:54 +00:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
2019-09-08 20:24:01 +00:00
|
|
|
"env": {
|
|
|
|
"mocha": true
|
|
|
|
},
|
2019-09-07 15:27:08 +00:00
|
|
|
"extends": "../../../.eslintrc.json"
|
2019-04-30 14:04:54 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@babel/runtime-corejs2": "7.3.1",
|
|
|
|
"async": "2.6.1",
|
2019-09-03 17:38:36 +00:00
|
|
|
"chalk": "2.4.2",
|
2019-08-28 19:52:21 +00:00
|
|
|
"embark-i18n": "^4.1.1",
|
2019-09-12 21:26:57 +00:00
|
|
|
"embark-testing": "5.0.0",
|
2019-08-28 19:52:21 +00:00
|
|
|
"embark-utils": "^4.1.1",
|
2019-05-15 22:48:03 +00:00
|
|
|
"fs-extra": "7.0.1",
|
2019-09-09 12:47:22 +00:00
|
|
|
"istanbul-lib-coverage": "2.0.5",
|
|
|
|
"istanbul-lib-report": "2.0.8",
|
|
|
|
"istanbul-reports": "2.2.4",
|
|
|
|
"mocha": "6.2.0",
|
2019-08-20 18:38:48 +00:00
|
|
|
"open": "6.4.0"
|
2019-04-30 14:04:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "7.2.3",
|
|
|
|
"@babel/core": "7.2.2",
|
|
|
|
"@types/async": "2.0.50",
|
|
|
|
"cross-env": "5.2.0",
|
|
|
|
"eslint": "5.7.0",
|
2019-09-07 19:55:24 +00:00
|
|
|
"mocha": "6.2.0",
|
2019-04-30 14:04:54 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2019-09-07 19:55:24 +00:00
|
|
|
"refute": "1.0.2",
|
2019-08-20 08:23:05 +00:00
|
|
|
"rimraf": "3.0.0",
|
2019-09-07 19:55:24 +00:00
|
|
|
"sinon": "7.4.2",
|
2019-05-03 13:32:48 +00:00
|
|
|
"tslint": "5.16.0",
|
2019-05-02 18:16:29 +00:00
|
|
|
"typescript": "3.4.5"
|
2019-04-30 14:04:54 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2019-05-24 22:17:16 +00:00
|
|
|
"node": ">=8.12.0 <12.0.0",
|
2019-04-30 14:04:54 +00:00
|
|
|
"npm": ">=6.4.1",
|
|
|
|
"yarn": ">=1.12.3"
|
|
|
|
}
|
|
|
|
}
|