-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@4c/env",
"version": "1.2.6",
"description": "Environment variable management and helpers",
"homepage": "https://github.com/4Catalyzer/env#readme",
"bugs": {
"url": "https://github.com/4Catalyzer/env/issues"
},
"license": "MIT",
"author": "4Catalyzer",
"files": [
"lib"
],
"main": "lib/env.js",
"repository": {
"type": "git",
"url": "git+https://github.com/4Catalyzer/env.git"
},
"scripts": {
"build:lib": "babel src -d lib --ignore **/__tests__ --delete-dir-on-start -x .ts",
"build:types": "tsc --outDir lib --emitDeclarationOnly",
"build": "yarn build:lib && yarn build:types",
"eslint": "eslint . --ext .js,.ts,.tsx",
"format": "yarn eslint && yarn prettier --write",
"lint": "tsc --noEmit && yarn eslint && yarn prettier --list-different",
"precommit": "lint-staged",
"prepublishOnly": "yarn run build",
"prettier": "prettier --ignore-path .eslintignore '**/*.{json,css,md}'",
"test": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{json,css,md}": "prettier --write --ignore-path .eslintignore"
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@types/getenv": "^1.0.0",
"dotenv": "^8.0.0",
"getenv": "^1.0.0"
},
"devDependencies": {
"@4c/babel-preset": "^8.1.1",
"@4c/tsconfig": "^0.4.0",
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/dotenv": "^6.1.1",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^7.28.0",
"eslint-config-4catalyzer": "^1.2.0",
"eslint-config-4catalyzer-typescript": "^3.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
}
}