-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 KB
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
{
"name": "codescan-export",
"description": "Export CodeScan issues from the command line",
"version": "1.0.7",
"author": "CodeScan by VillageChief",
"bin": {
"codescan-export": "./bin/run"
},
"bugs": "https://github.com/villagechief/codescan-export/issues",
"dependencies": {
"@oclif/command": "^1.5.14",
"@oclif/config": "^1.13.0",
"@oclif/plugin-help": "^2.2.0",
"cli-ux": "^5.2.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"@oclif/test": "^1.2.4",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/villagechief/codescan-export/",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "codescan-export"
},
"repository": "https://github.com/villagechief/codescan-export",
"scripts": {
"posttest": "eslint .",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\""
}
}