-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.44 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
{
"name": "valienv",
"version": "1.1.0",
"license": "MIT",
"description": "A simple environment variables validator for Node.js, web browsers and React Native",
"author": "Mathieu Acthernoene <zoontek@gmail.com>",
"homepage": "https://github.com/zoontek/valienv#readme",
"repository": {
"type": "git",
"url": "https://github.com/zoontek/valienv.git"
},
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"env",
"environment",
"dotenv",
"validation",
"validator",
"typescript"
],
"scripts": {
"build": "yarn clean && microbundle -f cjs,es",
"clean": "rm -rf dist",
"dev": "microbundle watch",
"format": "prettier '**/*' -u -w",
"lint": "eslint",
"test": "vitest --run",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit",
"prepack": "yarn lint && yarn test && yarn build"
},
"browserslist": [
">0.2%",
"not op_mini all",
"not dead"
],
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^20.17.17",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"microbundle": "^0.15.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5"
}
}