-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.59 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@nonfig/nestjs-config",
"version": "0.0.11",
"description": "NestJS wrapper for Nonfig",
"license": "MIT",
"keywords": [
"nestjs",
"nonfig",
"config",
"backend",
"backend-services",
"software-configurations",
"configurations",
"configuration-management",
"software-configuration-management",
"feature-flags",
"feature-toggles",
"localization",
"localization-management",
"feature-flags-management",
"environment-variables",
"json"
],
"author": {
"name": "nonfig",
"email": "[email protected]"
},
"scripts": {
"build": "npm run build:lib && ./tools/package.sh",
"build:lib": "npx tsc -p tsconfig.json",
"build:docs": "npx compodoc -p tsconfig.json",
"lint": "npm run lint:lib",
"lint:lib": "prettier --write './src/**'",
"test": "jest",
"semantic-release": "semantic-release",
"serve:docs": "npx compodoc -p tsconfig.json --serve",
"postversion": "cp package.json ../package.json && cp package-lock.json ../package-lock.json",
"prerelease": "npm run lint && npm run build",
"release": "cd dist && npm publish --access=public",
"prepublishOnly": "npm version patch",
"link": "npm run build && cd dist && npm link"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@nestjs/common": "7.4.4",
"@nestjs/core": "7.4.4",
"@nonfig/node-sdk": "0.0.37",
"lodash": "4.17.20",
"reflect-metadata": "0.1.13"
},
"devDependencies": {
"@angular-devkit/core": "9.0.2",
"@angular-devkit/schematics": "9.0.2",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@compodoc/compodoc": "1.1.11",
"@nestjs/platform-express": "^7.4.4",
"@nestjs/schematics": "7.1.2",
"@nestjs/testing": "^7.4.4",
"@semantic-release/changelog": "5.0.0",
"@semantic-release/git": "9.0.0",
"@types/jest": "25.1.2",
"@types/lodash": "^4.14.161",
"@types/node": "13.7.1",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"commitizen": "4.0.3",
"dotenv": "^8.2.0",
"eslint": "6.8.0",
"husky": "4.2.5",
"jest": "25.1.0",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"semantic-release": "17.0.4",
"ts-jest": "25.2.0",
"typescript": "3.7.5"
},
"repository": {
"type": "git",
"url": "https://github.com/nonfig/nestjs-config.git"
}
}