-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "@please.dev/cli",
"version": "0.6.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "node ./scripts/prepack.js",
"pack": "npm i && pkg --no-bytecode --public-packages \"*\" --public .",
"postpack": "node ./scripts/postpack.js",
"lint:check": "prettier --check . && eslint .",
"lint:fix": "prettier --write ."
},
"bin": {
"please": "index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"yargs": "^17.0.1",
"@please.dev/lib": "^0.6.2"
},
"devDependencies": {
"eslint": "^7.29.0",
"pkg": "^5.3.0",
"prettier": "^2.3.1"
},
"pkg": {
"targets": [
"latest-linux-arm64",
"latest-linux-x64",
"latest-alpine-arm64",
"latest-alpine-x64",
"latest-win-arm64",
"latest-win-x64",
"latest-macos-arm64",
"latest-macos-x64"
],
"outputPath": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pleasecmd/cli.git"
},
"bugs": {
"url": "https://github.com/pleasecmd/cli/issues"
},
"homepage": "https://please.dev"
}