-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "@ditrit/leto-modelizer-plugin-cli",
"version": "2.0.1",
"description": "Command line tools to install and manage plugins in leto-modelizer",
"main": "dist/leto-modelizer-plugin-cli.js",
"exports": {
".": {
"development": "./src",
"default": "./dist/leto-modelizer-plugin-cli.js"
}
},
"type": "module",
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node src/index.js",
"dev:install": "node src/index.js install",
"dev:uninstall": "node src/index.js uninstall",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"lint:report": "eslint --ext .js . -f json-relative > eslint.json"
},
"author": "Vincent Moittie <[email protected]>",
"license": "MPL-2.0",
"dependencies": {
"chalk": "=5.3.0",
"commander": "=12.1.0",
"conf": "=13.0.1",
"fs-extra2": "^1.0.1",
"prompts": "=2.4.2"
},
"devDependencies": {
"@babel/core": "=7.25.2",
"@babel/preset-env": "=7.25.3",
"babel-loader": "=9.1.3",
"eslint": "=8.55.0",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-formatter-json-relative": "=0.1.0",
"eslint-plugin-import": "=2.29.1",
"webpack": "=5.93.0",
"webpack-cli": "=5.1.4"
}
}