UNPKG

1.44 kBJSONView Raw
1{
2 "name": "@oclif/parser",
3 "description": "arg and flag parser for oclif",
4 "version": "3.8.5",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/parser/issues",
7 "dependencies": {
8 "@oclif/errors": "^1.2.2",
9 "@oclif/linewrap": "^1.0.0",
10 "chalk": "^2.4.2",
11 "tslib": "^1.9.3"
12 },
13 "devDependencies": {
14 "@types/chai": "^4.1.7",
15 "@types/mocha": "^5.2.6",
16 "@types/nock": "^9.3.1",
17 "@types/node": "^11.13.7",
18 "@types/node-notifier": "^5.4.0",
19 "@types/read-pkg": "^4.0.0",
20 "chai": "^4.2.0",
21 "conventional-changelog-cli": "^2.0.17",
22 "eslint": "^6.6.0",
23 "eslint-config-oclif": "^3.1.0",
24 "eslint-config-oclif-typescript": "^0.1.0",
25 "mocha": "^6.1.4",
26 "ts-node": "^8.1.0",
27 "typescript": "^3.4.5"
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": "tsc -p test --noEmit && eslint . --ext .ts --config .eslintrc",
45 "posttest": "yarn lint",
46 "prepublishOnly": "yarn run build",
47 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
48 "version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
49 "pretest": "yarn run build"
50 },
51 "types": "lib/index.d.ts"
52}