-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.92 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
{
"name": "@cycosoft/npm-select",
"version": "1.0.0",
"description": "Display package.json scripts as a list of keyboard selectable line items",
"license": "MIT",
"author": "Cycosoft, LLC (https://cycosoft.com)",
"homepage": "https://github.com/cycosoft/npm-select/releases",
"publishConfig": {
"access": "public"
},
"type": "commonjs",
"main": "index.js",
"bin": {
"npm-select": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cycosoft/npm-select.git"
},
"scripts": {
"--------- DEMO: DEFAULT ---------": "",
"start": "node index.js",
"--------- DEMO: MENU GROUP ---------": "",
"menu": "node index.js --filter \"^dev$|^tests$\"",
"--------- DEMO: SPECIFICITY ---------": "",
"dev": "node index.js --filter \"^dev:lite$|^dev:full$|^dev:fix$|^test:dev$\"",
"dev:lite": "echo 'dev:lite'",
"dev:full": "echo 'dev:full'",
"dev:fix": "echo 'dev:fix'",
"--------- DEMO: GROUP ---------": "",
"tests": "node index.js --filter ^test:",
"test:dev": "echo 'test:dev'",
"test:eyas": "echo 'test:eyas'",
"test:ui": "echo 'test:ui'",
"test:ci": "echo 'test:ci'",
"--------- DEMO: EXCLUDE ---------": "",
"exclude": "node index.js --exclude \"::.*|--.*|//.*|^menu$|^start$|^tests$|^dev$\"",
"--------- EXCLUDE EXAMPLES ---------": "",
"//comment.slash": "echo 'example // comment'",
"::comment.colon": "echo 'example :: comment'",
"--comment.dash": "echo 'example -- comment'",
"--------- DEPLOYMENT ---------": "",
"bundle": "npm pack",
"deploy": "npm run ENSURE_VERSION_SET && npm publish",
"bump:patch": "npm version patch && git push && git push --tags",
"bump:minor": "npm version minor && git push && git push --tags",
"bump:beta": "npm version prerelease --preid beta && git push && git push --tags"
},
"dependencies": {
"prompts": "^2.4.2"
},
"files": [
"index.js"
]
}