-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.48 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@realdecoy/frontier",
"version": "1.0.0",
"description": "Frontier: Software Development Toolkit",
"author": "RealDecoy",
"bin": "./bin/run",
"homepage": "https://github.com/realdecoy/frontier",
"license": "AGPL-3.0",
"main": "dist/index.js",
"repository": "realdecoy/frontier",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@mdi/font": "^7.2.96",
"@oclif/core": "2.8.0",
"@oclif/plugin-help": "^5",
"@types/fs-extra": "^11.0.4",
"bluebird": "^3.7.2",
"chalk": "4.1.2",
"compare-versions": "^6.1.0",
"fs-extra": "^11.2.0",
"mkdirp": "^2.1.6",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"prompts": "^2.4.2",
"replace-in-file": "^6.3.5",
"shelljs": "^0.8.5",
"vuetify": "^3.1.12",
"vue": "^3.3.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@oclif/test": "^2.3.13",
"@types/bluebird": "^3.5.38",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.20",
"@types/prompts": "^2.4.3",
"@types/sinon": "^10.0.13",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"mocha": "^9",
"nyc": "^15.1.0",
"oclif": "^3",
"shx": "^0.3.3",
"sinon": "^15.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "frontier",
"dirname": "frontier",
"commands": "./dist/commands",
"helpClass": "./dist/help",
"flexibleTaxonomy": true,
"hooks": {
"init": "./dist/hooks/init.js",
"command_incomplete": "./dist/hooks/command-incomplete.js",
"command_not_found": "./dist/hooks/command-not-found.js"
},
"plugins": [],
"topicSeparator": " "
},
"scripts": {
"audit": "npm audit --production",
"build": "tsc -b",
"rebuild": "run-s clean build && oclif manifest",
"clean": "shx rm -rf dist types lib tsconfig.tsbuildinfo oclif.manifest.json",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest",
"test": "nyc mocha --forbid-only \"src/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/realdecoy/frontier/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}