-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "@leoli0605/env-setup",
"version": "1.3.0",
"description": "\"\"",
"main": "./src/index.mjs",
"files": [
"src",
"scripts"
],
"repository": {
"type": "git",
"url": "https://github.com/leoli0605/npm-env-setup"
},
"bugs": {
"url": "https://github.com/leoli0605/npm-env-setup/issues"
},
"engines": {
"node": ">= 10.13.0"
},
"keywords": [
"env",
"setup",
"config"
],
"homepage": "https://github.com/leoli0605/npm-env-setup",
"scripts": {
"start": "node ./src/index.mjs",
"test": "node ./test/test.mjs",
"test:docker": "docker build -t env-setup . && docker run --rm -it env-setup /bin/bash",
"test:docker-20": "docker build --build-arg UBUNTU_VERSION=20.04 -t env-setup . && docker run --rm -it env-setup /bin/bash",
"test:docker-18": "docker build --build-arg UBUNTU_VERSION=18.04 -t env-setup . && docker run --rm -it env-setup /bin/bash",
"build": "webpack && npm run build:pkg",
"production": "webpack --mode production && npm run build:pkg",
"build:pkg": "pkg dist/env-setup.js --config pkg.config.json",
"clean": "rm -rf dist"
},
"author": "Leo Li",
"license": "MIT",
"dependencies": {
"@types/inquirer": "^9.0.7",
"chalk": "^5.3.0",
"fuzzyset": "^1.0.7",
"inquirer": "^9.2.15",
"markdown-table-prettify": "^3.6.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"pkg": "^5.8.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}