-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
38 lines (38 loc) · 962 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
{
"name": "cli-select",
"version": "1.1.2",
"description": "Simple and interactive solution to provide a list of selectable items on the command line",
"author": "Cyril Wanner <info@cyr.li>",
"license": "MIT",
"repository": "cyrilwanner/cli-select",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --copy-files",
"watch": "npm run build -- --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"shell",
"select",
"list",
"choose",
"checkbox",
"radio",
"radiobutton",
"dropdown"
],
"dependencies": {
"ansi-escapes": "^3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@types/node": "^11.13.6",
"rimraf": "^2.6.3"
}
}