-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 922 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 922 Bytes
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
{
"name": "@vuics/selfdev-js",
"version": "1.2.1",
"description": "A Command Line Interface (CLI) tool to interact with the Self-developing over API",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"pub": "npm publish --access public",
"inst": "npm i -g @vuics/selfdev-js",
"uninst": "npm un -g @vuics/selfdev-js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"selfdev-js": "src/index.js",
"selfdev": "src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vuics/selfdev-js"
},
"keywords": [
"selfdev",
"self-developing",
"API",
"command line interface",
"CLI"
],
"author": "Artem Arakcheev <artarakcheev@gmail.com>",
"license": "ISC",
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"minimist": "^1.2.8"
}
}