-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.55 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.55 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
60
61
62
63
64
65
66
67
68
69
{
"name": "dotenv-webpack",
"description": "A simple webpack plugin to support dotenv.",
"version": "0.0.0-semantically-released",
"main": "src/index.js",
"scripts": {
"precommit": "npm run lint",
"prepush": "npm t",
"lint": "XDG_CACHE_HOME=./.cache standard",
"predoc": "rimraf docs",
"doc": "jsdoc src/index.js -d docs",
"test": "jest",
"build": "node -e \"require('./src')\"",
"travis": "npm run lint && npm t"
},
"repository": {
"type": "git",
"url": "https://github.com/mrsteele/dotenv-webpack.git"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"watchPathIgnorePatterns": [
"output/.*?"
]
},
"keywords": [
"dotenv",
"env",
"safe",
"environment",
"dotenv-safe",
"variables",
"process",
"process.env",
"webpack",
"plugin"
],
"author": "Matt Steele <hi@mrsteele.dev> (http://mrsteele.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrsteele/dotenv-webpack/issues"
},
"homepage": "https://github.com/mrsteele/dotenv-webpack#readme",
"engines": {
"node": ">=18.18.0"
},
"peerDependencies": {
"webpack": "^4 || ^5"
},
"dependencies": {
"dotenv-defaults": "^5.0.2"
},
"devDependencies": {
"husky": "^9.1.7",
"jest": "^30.2.0",
"jsdoc": "^4.0.5",
"rimraf": "^6.0.1",
"sinon": "^21.0.0",
"standard": "^17.1.2",
"webpack": "^5.102.1"
},
"files": [
"src",
"types/index.d.ts"
],
"browser": "src/index.js",
"types": "types/index.d.ts"
}