forked from dotenvx/dotenvx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"version": "1.30.1",
"name": "@dotenvx/dotenvx",
"description": "a better dotenv–from the creator of `dotenv`",
"author": "@motdotla",
"keywords": [
"dotenv",
"env"
],
"homepage": "https://github.com/dotenvx/dotenvx",
"repository": {
"type": "git",
"url": "git+https://github.com/dotenvx/dotenvx.git"
},
"license": "BSD-3-Clause",
"files": [
"src/**/*",
"CHANGELOG.md"
],
"main": "src/lib/main.js",
"types": "src/lib/main.d.ts",
"bin": {
"dotenvx": "./src/cli/dotenvx.js",
"git-dotenvx": "./src/cli/dotenvx.js"
},
"scripts": {
"standard": "standard",
"standard:fix": "standard --fix",
"test": "tap run --allow-empty-coverage --disable-coverage --timeout=60000",
"test-coverage": "tap run --show-full-coverage --timeout=60000",
"test-single": "tap run --coverage-report=none tests/cli/actions/decrypt.test.js",
"testshell": "bash shellspec",
"prerelease": "npm test && npm run testshell",
"release": "standard-version"
},
"funding": "https://dotenvx.com",
"dependencies": {
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"eciesjs": "^0.4.10",
"execa": "^5.1.1",
"fdir": "^6.2.0",
"ignore": "^5.3.0",
"object-treeify": "1.1.33",
"picomatch": "^4.0.2",
"which": "^4.0.0"
},
"devDependencies": {
"@yao-pkg/pkg": "^5.14.2",
"capture-console": "^1.0.2",
"esbuild": "^0.24.0",
"proxyquire": "^2.1.3",
"sinon": "^14.0.1",
"standard": "^17.1.0",
"standard-version": "^9.5.0",
"tap": "^19.2.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}