-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.03 KB
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
{
"name": "dot-readme-profile",
"description": "Build README profiles",
"version": "0.0.0",
"author": "Chico @chico",
"bugs": "https://github.com/dot-cli/dot-readme-profile/issues",
"dependencies": {
"@oclif/core": "^1",
"axios": "^0.24.0",
"clipboardy": "^2.3.0",
"ghauth": "chico/ghauth.git#5.0.2",
"github-api": "^3.4.0",
"inquirer": "^8.2.0",
"linkifyjs": "^3.0.5",
"marked": "^4.0.6",
"marked-terminal": "^4.2.0",
"open": "^8.4.0",
"remarkable": "^2.0.1",
"underscore": "^1.13.2"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@oclif/plugin-help": "^5",
"@oclif/test": "^2",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-resolver": "^4.1.0",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^10",
"jest": "^27.4.5",
"madge": "^5.0.1",
"prettier": "^2.5.1",
"shx": "^0.3.3",
"sinon": "^12.0.1"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/yarn.lock"
],
"homepage": "https://github.com/dot-cli/dot-readme-profile",
"keywords": [
"oclif-plugin",
"dot-readme-profile",
"cli",
"dot-cli",
"dot"
],
"license": "MIT",
"oclif": {
"commands": "./dist/commands",
"bin": "dot-readme-profile",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "dot-cli/dot-readme-profile",
"scripts": {
"start": "babel src --watch -d dist --copy-files",
"readme": "./bin/run readme",
"readme-dev": "./bin/dev readme",
"test": "jest",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "eslint . --quiet && ./node_modules/.bin/madge --circular src",
"prepack": "oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
}
}