UNPKG

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