UNPKG

1.32 kBJSONView Raw
1{
2 "name": "@oclif/parser",
3 "description": "arg and flag parser for oclif",
4 "version": "3.3.0",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/parser/issues",
7 "dependencies": {
8 "@oclif/linewrap": "^1.0.0",
9 "chalk": "^2.3.2"
10 },
11 "devDependencies": {
12 "@oclif/errors": "^1.0.4",
13 "@oclif/tslint": "^1.1.0",
14 "@types/chai": "^4.1.2",
15 "@types/mocha": "^5.0.0",
16 "@types/nock": "^9.1.2",
17 "@types/node": "^9.6.2",
18 "@types/node-notifier": "^0.0.28",
19 "@types/read-pkg": "^3.0.0",
20 "chai": "^4.1.2",
21 "concurrently": "^3.5.1",
22 "eslint": "^4.19.1",
23 "eslint-config-oclif": "^1.4.0",
24 "mocha": "^5.0.5",
25 "ts-node": "^5.0.1",
26 "tslint": "^5.9.1",
27 "typescript": "^2.8.1"
28 },
29 "engines": {
30 "node": ">=8.0.0"
31 },
32 "files": [
33 "/lib"
34 ],
35 "homepage": "https://github.com/oclif/parser",
36 "keywords": [
37 "oclif"
38 ],
39 "license": "MIT",
40 "main": "lib/index.js",
41 "repository": "oclif/parser",
42 "scripts": {
43 "build": "rm -rf lib && tsc",
44 "lint": "yarn run build && concurrently -p command \"eslint .\" \"tsc -p test --noEmit\" \"tslint -p test\"",
45 "posttest": "yarn run lint",
46 "prepublishOnly": "yarn run build",
47 "test": "mocha --forbid-only \"test/**/*.test.ts\""
48 },
49 "types": "lib/index.d.ts"
50}