-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "@shaddyhm/configs",
"version": "0.2.1",
"description": "A simple application configuration library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"coverage": "nyc --reporter=lcov --reporter=text mocha",
"dev": "run-p build:watch test:watch",
"format": "prettier --write .",
"prepare": "husky",
"test": "mocha",
"test:watch": "mocha --watch --watch-files src,tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaddyhm/configs.git"
},
"keywords": [
"simple",
"application",
"configuration",
"library"
],
"author": "Shaddy Mansour <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaddyhm/configs/issues"
},
"homepage": "https://github.com/shaddyhm/configs#readme",
"dependencies": {
"app-root-path": "^3.1.0",
"mustache": "^4.2.0",
"yaml": "^2.4.2"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/mustache": "^4.2.5",
"@types/node": "^20.12.12",
"husky": "^9.0.11",
"mocha": "^10.4.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"mocha": {
"require": "ts-node/register",
"spec": "tests/**/*.spec.ts"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
}
}