forked from oclif/parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "@oclif/parser",
"description": "arg and flag parser for oclif",
"version": "3.8.4",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/parser/issues",
"dependencies": {
"@oclif/linewrap": "^1.0.0",
"chalk": "^2.4.2",
"tslib": "^1.9.3"
},
"devDependencies": {
"@oclif/errors": "^1.2.2",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/nock": "^9.3.1",
"@types/node": "^11.13.7",
"@types/node-notifier": "^5.4.0",
"@types/read-pkg": "^4.0.0",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.17",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"mocha": "^6.1.4",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/oclif/parser",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "oclif/parser",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "yarn run build && eslint . && tsc -p test --noEmit && tslint -p test",
"posttest": "yarn run lint",
"prepublishOnly": "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"
},
"types": "lib/index.d.ts"
}