-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 974 Bytes
/
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
{
"name": "no-more-rest",
"version": "0.0.8",
"description": "A tool to \"directly\" call functions on the server.",
"repository": {
"type": "git",
"url": "https://github.com/epavanello/no-more-rest"
},
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"@epavanello/no-more-rest": "bin/no-more-rest",
"no-more-rest": "bin/no-more-rest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"no-more-rest"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"update-package": "npm version patch && npm publish",
"prepublish": "tsc"
},
"author": "Pavanello Emanuele <[email protected]>",
"license": "MIT",
"dependencies": {
"acorn": "^8.0.5",
"arg": "^5.0.0",
"esm": "^3.2.25",
"inquirer": "^7.3.3",
"typescript": "^4.1.5",
"@types/express": "^4.17.11",
"@types/inquirer": "^7.3.1",
"eslint": "^7.20.0"
}
}