UNPKG

1.65 kBJSONView Raw
1{
2 "name": "@oclif/config",
3 "description": "base config object and standard interfaces for oclif components",
4 "version": "1.17.0",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/config/issues",
7 "dependencies": {
8 "@oclif/errors": "^1.3.3",
9 "@oclif/parser": "^3.8.0",
10 "debug": "^4.1.1",
11 "globby": "^11.0.1",
12 "is-wsl": "^2.1.1",
13 "tslib": "^2.0.0"
14 },
15 "devDependencies": {
16 "@types/chai": "^4.1.7",
17 "@types/indent-string": "^4.0.1",
18 "@types/lodash": "^4.14.123",
19 "@types/mocha": "^8.0.0",
20 "@types/node": "^14.0.14",
21 "@types/proxyquire": "^1.3.28",
22 "@types/wrap-ansi": "^3.0.0",
23 "chai": "^4.2.0",
24 "conventional-changelog-cli": "^2.0.21",
25 "eslint": "^7.3.1",
26 "eslint-config-oclif": "^3.1.0",
27 "eslint-config-oclif-typescript": "^0.2.0",
28 "fancy-test": "^1.4.3",
29 "lodash": "^4.17.11",
30 "mocha": "^6.1.4",
31 "proxyquire": "^2.1.0",
32 "ts-node": "^8.1.0",
33 "typescript": "3.8.3"
34 },
35 "engines": {
36 "node": ">=8.0.0"
37 },
38 "files": [
39 "/lib"
40 ],
41 "homepage": "https://github.com/oclif/config",
42 "keywords": [
43 "oclif"
44 ],
45 "license": "MIT",
46 "main": "lib/index.js",
47 "repository": "oclif/config",
48 "scripts": {
49 "build": "rm -rf lib && tsc",
50 "lint": "eslint . --ext .ts --config .eslintrc",
51 "posttest": "yarn lint",
52 "prepack": "yarn run build",
53 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
54 "version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
55 "pretest": "yarn build --noEmit && tsc -p test --noEmit"
56 },
57 "types": "lib/index.d.ts"
58}