UNPKG

1.28 kBJSONView Raw
1{
2 "name": "@oclif/example-plugin-js",
3 "description": "example dxcli plugin in javascript",
4 "version": "1.10.0",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/example-plugin-js/issues",
7 "dependencies": {
8 "@oclif/command": "^1",
9 "@oclif/config": "^1"
10 },
11 "devDependencies": {
12 "@oclif/dev-cli": "^1",
13 "@oclif/plugin-help": "^2",
14 "@oclif/test": "^1",
15 "chai": "^4",
16 "eslint": "^4",
17 "eslint-config-oclif": "^1",
18 "globby": "^8",
19 "mocha": "^5",
20 "nyc": "^12"
21 },
22 "engines": {
23 "node": ">=8.0.0"
24 },
25 "files": [
26 "/npm-shrinkwrap.json",
27 "/oclif.manifest.json",
28 "/src",
29 "/yarn.lock"
30 ],
31 "homepage": "https://github.com/oclif/example-plugin-js",
32 "keywords": [
33 "oclif-plugin"
34 ],
35 "license": "MIT",
36 "oclif": {
37 "commands": "./src/commands",
38 "bin": "oclif-example",
39 "devPlugins": [
40 "@oclif/plugin-help"
41 ]
42 },
43 "repository": "oclif/example-plugin-js",
44 "scripts": {
45 "postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
46 "posttest": "eslint .",
47 "prepack": "oclif-dev manifest && oclif-dev readme && npm shrinkwrap",
48 "test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
49 "version": "oclif-dev readme && git add README.md"
50 }
51}