prettify-bru 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ console.log("this is index");
2
+
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "prettify-bru",
3
+ "version": "0.1.0",
4
+ "description": "Prettifies JSON and JavaScript blocks in Bruno .bru files",
5
+ "keywords": [
6
+ "bruno",
7
+ "bru",
8
+ "prettier",
9
+ "prettify",
10
+ "body:json",
11
+ "format",
12
+ "lint"
13
+ ],
14
+ "homepage": "https://github.com/martinjoiner/prettify-bru#readme",
15
+ "bugs": {
16
+ "url": "https://github.com/martinjoiner/prettify-bru/issues"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/martinjoiner/prettify-bru.git"
21
+ },
22
+ "license": "GPL-3.0-or-later",
23
+ "author": "Martin Joiner (http://martinjoiner.co.uk)",
24
+ "type": "commonjs",
25
+ "main": "index.js",
26
+ "scripts": {
27
+ "test": "test",
28
+ "hello": "src/hello.js",
29
+ "src-index": "src/index.js"
30
+ }
31
+ }
package/src/hello.js ADDED
@@ -0,0 +1,2 @@
1
+ console.log('Hello World');
2
+
package/src/index.js ADDED
@@ -0,0 +1,2 @@
1
+ console.log("this is src/index.js")
2
+