-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.78 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@beaussan/nbx",
"description": "My own personal cli",
"version": "3.0.0",
"author": "Nicolas Beaussart @beaussan",
"bin": {
"nbx": "./bin/run"
},
"bugs": "https://github.com/beaussan/nbx/issues",
"dependencies": {
"@oclif/command": "1.8.0",
"@oclif/config": "1.17.0",
"@oclif/errors": "1.3.4",
"@oclif/plugin-help": "3.2.2",
"@oclif/plugin-not-found": "1.2.4",
"@oclif/plugin-warn-if-update-available": "1.7.0",
"axios": "0.21.1",
"colors": "1.4.0",
"cosmiconfig": "7.0.0",
"gluegun": "4.6.1",
"isomorphic-git": "1.8.1",
"latest-version": "5.1.0",
"prompts": "2.4.0",
"tslib": "2.1.0"
},
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.12",
"@babel/preset-typescript": "7.13.0",
"@oclif/dev-cli": "1.26.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@types/jest": "26.0.21",
"@types/node": "14.14.35",
"@types/prompts": "2.0.9",
"babel-jest": "26.6.3",
"codecov": "3.8.1",
"eslint": "7.22.0",
"eslint-config-oclif": "3.1.0",
"eslint-config-oclif-typescript": "0.2.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"globby": "11.0.3",
"husky": "4.3.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"semantic-release": "17.4.2",
"semantic-release-gitmoji": "1.3.4",
"strip-ansi": "6.0.0",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"typescript": "4.2.3"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/beaussan/nbx",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "nbx",
"plugins": [
"@oclif/plugin-help",
"@oclif/errors",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-not-found"
],
"topics": {
"add": {
"description": "install library to projects"
}
}
},
"repository": "https://github.com/beaussan/nbx",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "jest",
"test:watch": "jest --watch",
"update-readme": "oclif-dev readme",
"format:write": "prettier --write \"**/*.{js,vue,json,ts,tsx,md,yml,html}\"",
"format:check": "prettier --list-different \"**/*.{js,vue,json,ts,tsx,md,yml,html}\"",
"release": "semantic-release"
},
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}