UNPKG

1.64 kBJSONView Raw
1{
2 "name": "@anycli/example-plugin-ts",
3 "description": "example dxcli plugin in typescript",
4 "version": "0.9.1",
5 "author": "Jeff Dickey @jdxcode",
6 "anycli": {
7 "commands": "./lib/commands",
8 "plugins": [
9 "@anycli/plugin-help"
10 ]
11 },
12 "bugs": "https://github.com/anycli/example-plugin-ts/issues",
13 "dependencies": {
14 "@anycli/command": "^0.3.7",
15 "cli-ux": "^3.3.13"
16 },
17 "devDependencies": {
18 "@anycli/config": "^0.3.0",
19 "@anycli/dev-cli": "^0.1.1",
20 "@anycli/engine": "^0.3.0",
21 "@anycli/plugin-help": "^0.4.1",
22 "@anycli/test": "^0.10.3",
23 "@anycli/tslint": "^0.2.2",
24 "@types/chai": "^4.1.2",
25 "@types/lodash": "^4.14.100",
26 "@types/mocha": "^2.2.48",
27 "@types/nock": "^9.1.2",
28 "@types/node": "^9.4.0",
29 "@types/node-notifier": "^0.0.28",
30 "@types/read-pkg": "^3.0.0",
31 "chai": "^4.1.2",
32 "concurrently": "^3.5.1",
33 "eslint": "^4.16.0",
34 "eslint-config-anycli": "^1.3.1",
35 "mocha": "^5.0.0",
36 "ts-node": "^4.1.0",
37 "typescript": "^2.7.1"
38 },
39 "engines": {
40 "node": ">=8.0.0"
41 },
42 "files": [
43 ".anycli.manifest.json",
44 "/lib"
45 ],
46 "homepage": "https://github.com/anycli/example-plugin-ts",
47 "keywords": [
48 "anycli-plugin"
49 ],
50 "license": "MIT",
51 "repository": "anycli/example-plugin-ts",
52 "scripts": {
53 "build": "rm -rf lib && tsc",
54 "lint": "concurrently -p command \"eslint .\" \"tsc -p test --noEmit\" \"tslint -p test\"",
55 "posttest": "yarn run lint",
56 "prepublishOnly": "yarn run build && anycli-dev manifest > .anycli.manifest.json",
57 "test": "mocha --forbid-only \"test/**/*.test.ts\""
58 }
59}