-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
63
64
65
66
67
{
"author": {
"email": "[email protected]",
"name": "Matthew Fernando Garcia"
},
"dependencies": {},
"description": "Load configuration from environmental variables and files.",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@evilmartians/lefthook": "^1.0.0",
"@rushstack/eslint-config": "^3.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"babel-jest": "^29.0.0",
"eslint": "^8.21.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-unicorn": "^45.0.1",
"jest": "^29.0.0",
"map-to-map": "^2.0.0",
"prettier": "2.8.3",
"rimraf": "^4.0.0",
"rollup": "^3.7.2",
"rollup-plugin-ts": "^3.0.1",
"typescript": "~4.9.0"
},
"engines": {
"node": ">=14"
},
"files": [
"distribution",
"source"
],
"keywords": [
"config",
"configuration",
"dotenv",
"env",
"environment",
"files",
"load",
"loader",
"secrets",
"settings",
"twelve-factor",
"variables"
],
"license": "MIT",
"main": "distribution/index.cjs.js",
"module": "distribution/index.es.js",
"name": "env-and-files",
"repository": "wtgtybhertgeghgtwtg/env-and-files",
"scripts": {
"build": "rollup --bundleConfigAsCjs --config ./rollup.config.js",
"clean": "rimraf coverage distribution",
"lint": "tsc && eslint . && prettier --l \"{__mocks__,__tests__,source}/**/*.ts\"",
"test": "yarn test:source && yarn build && yarn test:distribution",
"test:source": "jest --config scripts/jest/config.source.js",
"test:distribution": "jest --config scripts/jest/config.distribution.js"
},
"sideEffects": false,
"types": "distribution/index.d.ts",
"version": "0.0.0-semantic-release"
}