-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.81 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": "construct-typed-parameters",
"version": "4.0.2",
"description": "Type-safe parameter construction library. Useful for managing environment variables, aws parameter stores and more.",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf ./lib/",
"cm": "cz",
"coverage": "codecov",
"lint": "xo ./src/ --fix",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/masahirompp/construct-typed-parameters.git"
},
"license": "MIT",
"author": {
"name": "masahirompp",
"email": "masahirompp@users.noreply.github.com",
"url": "https://github.com/masahirompp"
},
"engines": {
"node": ">=16.0"
},
"keywords": [
"typescript",
"parse",
"stringify",
"environment variable",
"parameter store"
],
"bugs": {
"url": "https://github.com/masahirompp/construct-typed-parameters/issues"
},
"homepage": "https://github.com/masahirompp/construct-typed-parameters#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"codecov": "^3.8.2",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"xo": "^0.53.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "xo --fix"
},
"release": {
"branches": [
"main"
]
}
}