-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.84 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@simplyappdevs/nodejs-prompt",
"version": "1.4.0",
"description": "NodeJS prompt module",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./app-cidr": {
"import": "./dist/esm/app-cidr.js",
"require": "./dist/cjs/app-cidr.js"
}
},
"files": [
"dist",
"src",
"examples",
"README.md",
"wrapper.mjs"
],
"scripts": {
"tsc": "tsc",
"del": "rimraf",
"test": "jest",
"cp": "fse copy",
"cpesmpkg": "npm run cp ./package-esm.json ./dist/esm/package.json",
"cpcjspkg": "npm run cp ./package-cjs.json ./dist/cjs/package.json",
"build:common": "tsc --project tsconfig-cjs.json",
"build:esm": "tsc --project tsconfig.json",
"clean": "npm run del ./dist/*",
"build": "npm run clean && npm run build:common && npm run build:esm && npm run cpesmpkg && npm run cpcjspkg",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplyappdevs/nodejs-prompt.git"
},
"keywords": [
"node",
"prompt",
"stdin",
"readline",
"module",
"reductive promise chaining",
"recursive promise chaining"
],
"author": "SimplyAppDevs",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/simplyappdevs/nodejs-prompt/issues"
},
"homepage": "https://github.com/simplyappdevs/nodejs-prompt#readme",
"devDependencies": {
"@atao60/fse-cli": "^0.1.7",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"jest": "^27.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"dependencies": {
"@simplyappdevs/logging-helper": "^1.1.0"
}
}