-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (53 loc) · 1.04 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
{
"name": "@lentix/env",
"version": "0.0.0",
"description": "ENV Files",
"private": true,
"main": "./dist/index.js",
"files": [
"*.md",
"LICENSE",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"commit": "git-cz",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "tsc",
"test": "jest --config jestconfig.json"
},
"keywords": [
"env",
"env-cmd",
"env-cli",
"env-extra",
"cross-env"
],
"author": "Lentix",
"license": "MIT",
"devDependencies": {
"@types/node": "18.14.0",
"@types/webpack-env": "1.18.0",
"typescript": "4.9.5"
},
"dependencies": {
"env":"^0.0.2",
"dotenv": "16.0.3",
"env-paths":"^3.0.0",
"env-cmd": "^10.1.0",
"env-cli": "^1.0.5"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint",
"pre-push": "pnpm test"
}
}
}