UNPKG

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