jest-ex
Version:
A runner and a transformer to simplify (a little bit) your work with Jest.
49 lines (48 loc) • 1.41 kB
JSON
{
"name": "jest-ex",
"description": "A runner and a transformer to simplify (a little bit) your work with Jest.",
"version": "9.0.0",
"repository": "homer0/jest-ex",
"author": "Leonardo Apiwan (@homer0) <me@homer0.com>",
"license": "MIT",
"keywords": [
"jest",
"jasmine",
"tests",
"unit"
],
"dependencies": {
"glob": "^7.1.6",
"@babel/core": "7.10.3",
"@babel/plugin-transform-runtime": "7.10.3",
"@babel/preset-env": "7.10.3",
"yargs": "^15.3.1",
"html-loader": "^1.1.0",
"jest-cli": "^26.1.0",
"@jest/core": "^26.1.0"
},
"devDependencies": {
"@babel/cli": "7.10.3",
"babel-jest": "^26.1.0",
"eslint": "^7.3.1",
"eslint-plugin-homer0": "^4.0.0",
"jasmine-expect": "^4.0.3",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"coveralls": "^3.1.0"
},
"engine-strict": true,
"engines": {
"node": ">=10.0.0"
},
"main": "dist/index.js",
"scripts": {
"hooks": "./utils/hooks/install",
"build": "./utils/scripts/build",
"test": "./utils/scripts/test",
"lint": "./utils/scripts/lint",
"docs": "./utils/scripts/docs",
"prepare": "npm run is-windows --loglevel=silent && prepare || ./prepare",
"is-windows": "node -e \"process.exit(process.platform === 'win32' ? 0 : 1);\""
}
}