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