-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "@poki/cli",
"version": "0.1.16",
"description": "Poki for Developers command line utility",
"keywords": [
"cli",
"poki"
],
"homepage": "https://github.com/poki/poki-cli",
"bugs": {
"url": "https://github.com/poki/poki-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poki/poki-cli.git"
},
"license": "ISC",
"files": [
"bin/index.js"
],
"bin": {
"poki": "bin/index.js"
},
"scripts": {
"cli": "node bin/index.js",
"lint": "ts-standard src rollup.config.js --fix",
"build": "rollup -c",
"prepublish": "yarn lint && yarn build"
},
"dependencies": {
"archiver": "^5.3.0",
"form-data": "^4.0.0",
"open": "^8.2.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/archiver": "^5.1.1",
"@types/yargs": "^17.0.2",
"rollup": "^2.56.2",
"rollup-plugin-typescript2": "^0.35.0",
"ts-standard": "^10.0.0",
"tslib": "^2.5.3",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=12"
}
}