-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "getenv.ts",
"version": "1.4.0",
"description": "Get and typecast environment variables with TypeScript",
"author": "Torkild Dyvik Olsen <torkild@tdolsen.net>",
"license": "MIT",
"homepage": "https://gitlab.com/tdolsen/getenv.ts",
"repository": "git@gitlab.com:tdolsen/getenv.ts.git",
"bugs": "https://gitlab.com/tdolsen/getenv.ts/issues",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"prepare": "husky install",
"clean": "del dist",
"test": "jest",
"format": "prettier --write",
"build": "pnpm run clean && pnpm run build:types && pnpm run build:code",
"build:code": "tsup",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
"release": "pnpm build && semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^9.2.0",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.31",
"del-cli": "^4.0.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.4",
"tsup": "^5.12.6",
"typescript": "^4.6.4"
}
}