UNPKG

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