-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.18 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "tidy-config",
"version": "1.0.0-beta.3",
"license": "MIT",
"author": "Chris Benjamin <cbenjamin@stormseed.com>",
"homepage": "https://github.com/stormseed/tidy-config",
"repository": {
"type": "git",
"url": "https://github.com/stormseed/tidy-config.git"
},
"bugs": {
"url": "https://github.com/stormseed/tidy-config/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"description": "A small utility designed to sync a package.yaml file and root configuration files in a separate configuration folder",
"keywords": [
"clean",
"conf",
"config",
"configuration",
"settings",
"organize",
"organization",
"preferences",
"package.json",
"sync",
"yaml"
],
"files": [
"/bin",
"README.md"
],
"bin": {
"tidy-config": "bin/tidy-config.js"
},
"scripts": {
"build": "rimraf bin && ncc build src/app/tidy-config.ts --minify --out bin && move-file bin/index.js bin/tidy-config.js",
"build-and-publish": "yarn build && yarn publish",
"dev": "tsc --project tsconfig.dev.json --watch",
"tidy-config": "build && node bin/tidy-config.js",
"tidy-config-test": "node tmp/app/tidy-config.js",
"postinstall": "node bin/tidy-config --sync --force=json"
},
"devDependencies": {
"@types/node": "^12.0.0",
"@types/prompts": "^2.0.14",
"chalk": "^4.1.1",
"prettier": "^2.3.2",
"typescript": "^4.3.5",
"yaml-diff-patch": "*",
"@types/yaml": "^1.9.7",
"@types/yargs": "^17.0.2",
"@types/prettier": "^2.3.2",
"@types/object-hash": "^2.1.1",
"@types/js-yaml": "^4.0.2",
"@vercel/ncc": "^0.29.1",
"deepmerge": "^4.2.2",
"js-yaml": "^4.1.0",
"move-file-cli": "^3.0.0",
"object-hash": "^2.2.0",
"prompts": "^2.4.1",
"rimraf": "^3.0.2",
"rfc6902": "^4.0.2",
"yaml": "^1.10.2",
"yargs": "^17.1.1",
"release-it": "^14.11.5"
},
"tidyConfig": {
"configName": "config",
"files": [
".prettierrc.json",
".release-it.yaml",
"tsconfig.json",
"tsconfig.dev.json"
],
"hideInVSCode": true,
"hash": "9dcb90fbc60ddaf179d43fb8e0714a9b993a4fcb",
"timestamp": 1629467899
}
}