-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "dotenv-cmd-webpack",
"version": "2.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Rayhan Hamada",
"email": "rayhanhamada1999@gmail.com"
},
"repository": {
"url": "https://github.com/RayhanHamada/dotenv-cmd-webpack"
},
"description": "A Webpack plugin for loading .env file in JSON format",
"keywords": [
"webpack",
"plugin",
"environment",
"variable",
"json"
],
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "./node_modules/.bin/eslint",
"fmt": "./node_modules/.bin/prettier {src,test}/**/*.ts --write",
"test": "ts-mocha -p tsconfig.json ./test/**/*.spec.ts",
"prepare": "husky install"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"@types/webpack": "^5.28.0",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"husky": "^7.0.0",
"mocha": "^9.1.3",
"prettier": "^2.5.0",
"ts-loader": "^9.2.6",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"webpack": "5.64.4"
}
}