diff options
Diffstat (limited to 'test/formatters/samplecode/prettier-json-stringify')
| -rw-r--r-- | test/formatters/samplecode/prettier-json-stringify/in.json | 13 | ||||
| -rw-r--r-- | test/formatters/samplecode/prettier-json-stringify/out.json | 15 |
2 files changed, 28 insertions, 0 deletions
diff --git a/test/formatters/samplecode/prettier-json-stringify/in.json b/test/formatters/samplecode/prettier-json-stringify/in.json new file mode 100644 index 0000000..f6d73a6 --- /dev/null +++ b/test/formatters/samplecode/prettier-json-stringify/in.json @@ -0,0 +1,13 @@ +{ + "name": "test-package-json", + "version": "1.0.0", + "main": "index.js", + "files": ["index.js"], + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "description": "" +} diff --git a/test/formatters/samplecode/prettier-json-stringify/out.json b/test/formatters/samplecode/prettier-json-stringify/out.json new file mode 100644 index 0000000..51ba2a3 --- /dev/null +++ b/test/formatters/samplecode/prettier-json-stringify/out.json @@ -0,0 +1,15 @@ +{ + "name": "test-package-json", + "version": "1.0.0", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "description": "" +} |
