-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 977 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 977 Bytes
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
{
"name": "nodejs-prompt-example",
"version": "1.0.0",
"description": "Examples for @simplyappdevs/nodejs-prompt NPM",
"main": "index.js",
"type": "module",
"scripts": {
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./dist/*",
"build": "npm run clean && npm run tsc",
"exec": " node --trace-warnings --es-module-specifier-resolution=node ./dist/index.js",
"build:exec": "npm run build && npm run exec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplyappdevs/nodejs-prompt-example.git"
},
"keywords": [
"simplyappdevs",
"nodejs-prompt",
"examples"
],
"author": "Simply AppDevs",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/simplyappdevs/nodejs-prompt-example/issues"
},
"homepage": "https://github.com/simplyappdevs/nodejs-prompt-example#readme",
"devDependencies": {
"@types/jest": "^27.0.1"
}
}