@webbies.dev/dotenvify 0.3.8 → 0.3.11

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.
Files changed (1) hide show
  1. package/package.json +9 -3
package/package.json CHANGED
@@ -1,13 +1,17 @@
1
1
  {
2
2
  "name": "@webbies.dev/dotenvify",
3
- "version": "0.3.8",
3
+ "version": "0.3.11",
4
4
  "description": "A utility to convert environment variables from various sources into different formats",
5
5
  "bin": {
6
6
  "dotenvify": "./bin/dotenvify"
7
7
  },
8
8
  "scripts": {
9
9
  "postinstall": "node scripts/install.js",
10
- "test": "node bin/dotenvify --help"
10
+ "test": "go test ./... -cover",
11
+ "build": "go build -o bin/dotenvify",
12
+ "preversion": "npm test",
13
+ "version": "git add -A",
14
+ "postversion": "git push && git push --tags"
11
15
  },
12
16
  "keywords": [
13
17
  "dotenv",
@@ -25,7 +29,9 @@
25
29
  },
26
30
  "files": [
27
31
  "bin/dotenvify",
28
- "scripts/install.js"
32
+ "scripts/install.js",
33
+ "README.md",
34
+ "LICENSE"
29
35
  ],
30
36
  "os": [
31
37
  "darwin",