135 lines
3.8 KiB
JSON
135 lines
3.8 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "jest-expo@25.0.0",
|
|
"scope": null,
|
|
"escapedName": "jest-expo",
|
|
"name": "jest-expo",
|
|
"rawSpec": "25.0.0",
|
|
"spec": "25.0.0",
|
|
"type": "version"
|
|
},
|
|
"/home/jdaugherty/work/GT2/GT2-Android"
|
|
]
|
|
],
|
|
"_from": "jest-expo@25.0.0",
|
|
"_id": "jest-expo@25.0.0",
|
|
"_inCache": true,
|
|
"_location": "/jest-expo",
|
|
"_nodeVersion": "9.2.0",
|
|
"_npmOperationalInternal": {
|
|
"host": "s3://npm-registry-packages",
|
|
"tmp": "tmp/jest-expo-25.0.0.tgz_1516323080905_0.520536835771054"
|
|
},
|
|
"_npmUser": {
|
|
"name": "brentvatne",
|
|
"email": "brentvatne@gmail.com"
|
|
},
|
|
"_npmVersion": "5.5.1",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "jest-expo@25.0.0",
|
|
"scope": null,
|
|
"escapedName": "jest-expo",
|
|
"name": "jest-expo",
|
|
"rawSpec": "25.0.0",
|
|
"spec": "25.0.0",
|
|
"type": "version"
|
|
},
|
|
"_requiredBy": [
|
|
"#DEV:/"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/jest-expo/-/jest-expo-25.0.0.tgz",
|
|
"_shasum": "c17b77b66091aca174445405a19ce2ae88e27dd9",
|
|
"_shrinkwrap": null,
|
|
"_spec": "jest-expo@25.0.0",
|
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android",
|
|
"dependencies": {
|
|
"babel-jest": "^22.1.0",
|
|
"jest": "^22.1.1",
|
|
"json5": "^0.5.1",
|
|
"react-test-renderer": "16.2.0"
|
|
},
|
|
"description": "A [Jest](https://facebook.github.io/jest/) preset to painlessly test your Expo apps.",
|
|
"devDependencies": {
|
|
"react": "16.2.0"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"integrity": "sha512-UTehBDFkKM6zPWI/TwF+nm3zZ9cOFhDjz6KtHO2OY4YgsLIHk4fXkZh55l1xshyT4J+khiiox5sB1ViNQHqBaw==",
|
|
"shasum": "c17b77b66091aca174445405a19ce2ae88e27dd9",
|
|
"tarball": "https://registry.npmjs.org/jest-expo/-/jest-expo-25.0.0.tgz"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"jest-preset.json"
|
|
],
|
|
"license": "MIT",
|
|
"maintainers": [
|
|
{
|
|
"name": "anp",
|
|
"email": "adam.n.perry@gmail.com"
|
|
},
|
|
{
|
|
"name": "algebr",
|
|
"email": "edgar.factorial@gmail.com"
|
|
},
|
|
{
|
|
"name": "evanbacon",
|
|
"email": "baconbrix@gmail.com"
|
|
},
|
|
{
|
|
"name": "fson",
|
|
"email": "ville.immonen@iki.fi"
|
|
},
|
|
{
|
|
"name": "abi",
|
|
"email": "abimanyuraja@gmail.com"
|
|
},
|
|
{
|
|
"name": "jesseruder",
|
|
"email": "jesse@sixfivezero.net"
|
|
},
|
|
{
|
|
"name": "terribleben",
|
|
"email": "ben@exp.host"
|
|
},
|
|
{
|
|
"name": "ccheever",
|
|
"email": "ccheever@gmail.com"
|
|
},
|
|
{
|
|
"name": "dikaiosune",
|
|
"email": "adam.n.perry@gmail.com"
|
|
},
|
|
{
|
|
"name": "nikki93",
|
|
"email": "s.nikhilesh@gmail.com"
|
|
},
|
|
{
|
|
"name": "brentvatne",
|
|
"email": "brentvatne@gmail.com"
|
|
},
|
|
{
|
|
"name": "ide",
|
|
"email": "ide+npm@jameside.com"
|
|
},
|
|
{
|
|
"name": "expoadmin",
|
|
"email": "support@expo.io"
|
|
}
|
|
],
|
|
"name": "jest-expo",
|
|
"optionalDependencies": {},
|
|
"peerDependencies": {
|
|
"react-native": "*"
|
|
},
|
|
"readme": "# jest-expo\n\nA [Jest](https://facebook.github.io/jest/) preset to painlessly test your Expo apps.\n\nIf you have problems with the code in this repository, please file issues & bug reports\nat https://github.com/expo/expo. Thanks!\n\n### Installation\n\n- `yarn add jest-expo --dev` or `npm i jest-expo --save-dev`\n- Add the following config to `package.json`:\n\n ```js\n \"scripts\": {\n \"test\": \"node_modules/.bin/jest\"\n },\n \"jest\": {\n \"preset\": \"jest-expo\"\n }\n ```\n\n- Create a `__tests__` directory anywhere you like and a `Example-test.js` file inside of it, and add this code:\n\n ```js\n it('works', () => {\n expect(1).toBe(1);\n });\n ```\n\n- Run `npm test` and it should pass\n\n### Learning Jest\n\n[Read the excellent documentation](https://facebook.github.io/jest/)\n",
|
|
"readmeFilename": "README.md",
|
|
"scripts": {
|
|
"generate": "tools/generate-jest-preset.js"
|
|
},
|
|
"version": "25.0.0"
|
|
}
|