-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@carnesen/p-env",
"version": "1.0.0",
"description": "A TypeScript library for parsing process.env type-safely",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "./scripts/build.sh",
"examples": "STRICT=1 ts-node src/examples.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"release": "carnesen-dev release --semverBump",
"start": "node lib",
"test": "./scripts/test.sh",
"unit-test": "jest src --coverage",
"unit-test:watch": "npm run unit-test -- --watch"
},
"devDependencies": {
"@carnesen/dev": "^0.4.0",
"@carnesen/tsconfig": "^0.5.0",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-carnesen": "^13.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
},
"repository": "github:carnesen/p-env",
"author": "Chris Arnesen",
"license": "MIT",
"bugs": {
"url": "https://github.com/carnesen/p-env/issues"
},
"homepage": "https://github.com/carnesen/p-env#readme",
"files": [
"src",
"!src/**/__tests__",
"lib",
"!lib/**/__tests__"
]
}