-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.66 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
{
"name": "ex-config",
"version": "5.0.0",
"description": "Extendable configuration processor.",
"keywords": [
"config",
"configuration",
"extend",
"extendable",
"cosmiconfig",
"rc",
"resolve",
"prefix",
"require",
"resolve string",
"require string",
"string config",
"string configuration"
],
"license": "MIT",
"private": false,
"repository": "chrisblossom/ex-config",
"homepage": "https://github.com/chrisblossom/ex-config",
"author": "Chris Blossom",
"engines": {
"node": ">=18.12.0"
},
"files": [
"dist/"
],
"main": "dist/ex-config.js",
"module": "commonjs",
"types": "dist/ex-config.d.ts",
"scripts": {
"build": "backtrack build --production",
"check.all": "backtrack check.all",
"clean": "backtrack clean",
"dev": "backtrack dev --development",
"format": "backtrack format",
"git-pre-commit": "backtrack git-pre-commit",
"git-pre-push": "backtrack git-pre-push",
"lint": "backtrack lint",
"lint.fix": "backtrack lint.fix",
"prepublishOnly": "backtrack prepublishOnly",
"release": "backtrack release",
"test": "backtrack test",
"test.ci": "backtrack test.ci",
"test.ci-pretest": "backtrack test.ci-pretest",
"test.update": "jest --update-snapshot",
"test.watch": "jest --watch --pass-with-no-tests",
"typescript": "backtrack typescript"
},
"devDependencies": {
"@backtrack/core": "^0.2.1",
"@backtrack/preset-node": "^0.10.3",
"@types/jest": "^29.5.7",
"@types/lodash.clonedeep": "^4.5.8",
"@types/lodash.mergewith": "^4.6.8",
"typescript": "^5.2.2"
},
"dependencies": {
"joi": "^17.11.0",
"lodash.clonedeep": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"resolve-with-prefix": "^4.0.1"
}
}