-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
56 lines (56 loc) · 1.44 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": "node-config-ts",
"version": "0.0.0-development",
"description": "A simple configuration manager for typescript based projects",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tusharmath/node-config-ts.git"
},
"bin": "./bin/cli",
"scripts": {
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"lint": "tslint --project .",
"prettier": "git ls-files | grep -E '.*\\.(ts|md|json)$' | xargs prettier --write --config=.prettierrc",
"test": "mocha",
"commit": "cz",
"build": "tsc -d"
},
"dependencies": {
"dotenv": "^16.0.3",
"json-to-ts": "^1.6.0",
"json5": "^2.2.2",
"minimist": "^1.2.0",
"prettier": "^2.8.0"
},
"peerDependencies": {
"webpack": "4.x || 5.x",
"dotenv": "^16.0.3"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
}
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/minimist": "^1.2.0",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/prettier": "^1.19.0",
"@types/webpack": "^4.41.5",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.1.0",
"mocha": "^10.2.0",
"semantic-release": "^20.0.2",
"travis-deploy-once": "^5.0.9",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}