forked from bkeepers/update-dotenv
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.45 KB
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
{
"name": "@growflow/update-dotenv",
"prettier": "@growflow/prettier-config",
"version": "1.0.4",
"main": "lib/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.9.2",
"@growflow/prettier-config": "^6.0.0",
"@types/jest": "^27.0.0",
"babel-jest": "^26.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"peerDependencies": {
"dotenv": "*"
},
"scripts": {
"build": "rimraf dist lib && tsc -p tsconfig.output.json && babel src -d lib --extensions \".ts\" --source-maps",
"lint": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GrowflowTeam/update-dotenv.git"
},
"keywords": [
"dotenv"
],
"author": "Brandon Keepers <bkeepers@github.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/GrowflowTeam/update-dotenv/issues"
},
"homepage": "https://github.com/GrowflowTeam/update-dotenv#readme",
"engines": {
"node": ">=14"
}
}