generated from daotl/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "env-to-class",
"version": "0.1.3",
"packageManager": "[email protected]",
"description": "Load process.env into class instance by convention",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.ts --fix",
"build": "tsup src/**/*.ts",
"pub": "npm run lint && npm run test && npm run build && npm publish --access public",
"prepare": "husky install"
},
"prettier": "@daotl/prettier-config",
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"decamelize": "^6.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@anatine/esbuild-decorators": "^0.2.19",
"@daotl/eslint-config": "^0.3.25",
"@daotl/tsconfig": "^0.1.0",
"@types/node": "^18.0.0",
"esbuild": "^0.14.46",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"pnpm": "^7.3.0",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"tsup": "^6.1.2",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daotl/ts-lib-starter.git"
},
"keywords": [
"TypeScript",
"library"
],
"author": "Nex Zhu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NexZhu/node-env-to-class/issues"
},
"homepage": "https://github.com/NexZhu/node-env-to-class#readme"
}