-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "resolve-with-prefix",
"version": "4.0.1",
"description": "Resolve modules with a predefined prefix.",
"keywords": [
"resolve",
"prefix",
"require",
"resolve string",
"require string",
"string config",
"string configuration",
"config",
"configuration"
],
"license": "MIT",
"private": false,
"repository": "chrisblossom/resolve-with-prefix",
"homepage": "https://github.com/chrisblossom/resolve-with-prefix",
"author": "Chris Blossom",
"engines": {
"node": ">=18.12.0"
},
"files": [
"dist/"
],
"main": "dist/resolve-with-prefix.js",
"module": "commonjs",
"types": "dist/resolve-with-prefix.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/node": "^18.18.8",
"@types/resolve": "1.20.4",
"typescript": "^5.2.2"
},
"dependencies": {
"resolve": "^1.22.8"
}
}