-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 KB
/
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
42
43
44
45
46
47
48
49
50
{
"name": "@lets/run",
"version": "1.4.1",
"description": "👟 run npm scripts interactively",
"keywords": [
"npm",
"run",
"scripts",
"interactive",
"👟"
],
"author": "omrilotan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/omrilotan/run.git"
},
"homepage": "https://omrilotan.com/run/",
"bin": {
"lets-run": "bin.js",
"run": "bin.js"
},
"scripts": {
"#": "echo \"This is not a comment\"",
"hidden": "echo \"you can't see me\"",
"lint": "eslint '**/*.js'",
"say something": "echo \"Hey, buddy!\"",
"self": "run",
"start": "./bin.js",
"test": "mocha '**/spec.js' --recursive --exclude 'node_modules'"
},
"scripts:descriptions": {
"#": "Comment",
"hidden": null,
"lint": "Check code syntax"
},
"dependencies": {
"@does/exist": "^1.1.0",
"async-execute": "^1.2.0",
"colors": "^1.4.0",
"inquirer": "^7.3.3"
},
"devDependencies": {
"@omrilotan/eslint-config": "^1.1.0",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"eslint-plugin-log": "^1.2.3",
"mocha": "^8.1.0"
}
}