-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.48 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
{
"name": "massive-wax",
"description": "It does repetitive jobs on GitHub repos",
"version": "1.1.0",
"author": "Manuel Spigolon @Eomm",
"bin": {
"massive-wax": "./bin/run"
},
"bugs": "https://github.com/Eomm/massive-wax/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-not-found": "^1.2.3",
"@octokit/rest": "^16.36.0",
"array.prototype.flatmap": "^1.2.3",
"parse-github-url": "^1.0.2",
"simple-git": "^1.126.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"globby": "^10.0.1",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.0",
"standard": "^14.3.1",
"tap": "^14.8.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/Eomm/massive-wax",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "massive-wax",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"repository": "Eomm/massive-wax",
"scripts": {
"prepack": "oclif-dev manifest && oclif-dev readme",
"postpack": "rimraf oclif.manifest.json",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && tap test/**/*.test.js",
"prepublish": "npm run readme",
"readme": "oclif-dev readme"
}
}