-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
{
"name": "json-combiner",
"version": "3.0.1",
"description": "Combines JSON file, using folder structure to determine JSON structure",
"typings": "lib/index.d.ts",
"type": "module",
"exports": {
"import": "./lib/index.js"
},
"bin": {
"json-combiner": "./bin/json-combiner.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run lint && npm run tsc",
"tsc": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"test": "mocha tests/index.mjs",
"watch": "tsc -w"
},
"files": [
"lib",
"bin",
"README.md",
"LICENSE"
],
"author": {
"name": "Andrew Start",
"url": "https://github.com/andrewstart"
},
"contributors": [
{
"name": "Matt Szklarz",
"url": "https://github.com/matteszk"
},
{
"name": "Matt Karl",
"url": "https://github.com/bigtimebuddy"
}
],
"license": "MIT",
"dependencies": {
"fs-extra": "^11.3.0",
"json5": "^2.2.3",
"minimist": "^1.2.0",
"strip-json-comments": "^5.0.1"
},
"peerDependencies": {
"typescript": ">3.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/minimist": "^1.2.0",
"@types/node": "^20.0.0",
"mocha": "^11.1.0",
"slash": "^5.0.0",
"tslint": "^5.17.0",
"typescript": "^5.0.0"
}
}