-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.65 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
{
"name": "conf-tool",
"description": "Tool to manage the nixOS config",
"version": "0.1.0",
"author": "Maciej Krüger @mkg20001",
"template": {
"extends": [
"nodeEslint"
]
},
"bin": {
"conf": "./bin/run"
},
"bugs": "https://github.com/ssd-solar/conf-tool/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"bl": "^5.0.0",
"debug": "^4.3.2",
"dlv": "^1.1.3",
"dset": "^3.1.1",
"eslint-config-aegir-standalone": "^21.3.0",
"mkdirp": "^1.0.4",
"mkgs-tool": "^0.1.21",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"chai": "^4",
"eslint": "*",
"eslint-config-ipfs": "*",
"eslint-config-oclif": "*",
"globby": "^12",
"mocha": "*",
"nyc": "*"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/ssd-solar/conf-tool",
"keywords": [
"oclif"
],
"license": "MPL-2.0",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "conf",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": [
"./src/hooks/init/plugincmds"
]
}
},
"repository": "ssd-solar/conf-tool",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "mocha -A",
"version": "oclif-dev readme && git add README.md",
"cov": "nyc mocha",
"lint": "eslint .",
"fix": "eslint --fix ."
}
}