-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
51
52
53
54
55
56
57
58
59
{
"name": "comeon",
"version": "1.0.0",
"description": "🍺 Fast, simple, flexible, usefully command line tool for developers to open documents with the fastest way.",
"keywords": [
"document",
"document-manager",
"command-line"
],
"author": "sqrtthree <[email protected]>",
"bugs": {
"url": "https://github.com/sqrthree/comeon/issues"
},
"homepage": "https://github.com/sqrthree/comeon#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sqrthree/comeon.git"
},
"license": "MIT",
"preferGlobal": true,
"main": "bin/comeon",
"bin": {
"comeon": "bin/comeon",
"comeon-open": "bin/comeon-open",
"comeon-update": "bin/comeon-update",
"comeon-list": "bin/comeon-list"
},
"scripts": {
"lint": "standard",
"lint-with-fix": "standard --fix",
"test": "NODE_ENV=testing mocha --recursive --timeout 30000 --exit",
"cover": "NODE_ENV=testing nyc --reporter=html --reporter=text mocha --recursive --exit",
"coveralls": "NODE_ENV=testing nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^4.0.0",
"hosted-git-info": "^3.0.0",
"inquirer": "^7.0.0",
"lodash": "^4.17.15",
"node-emoji": "^1.10.0",
"opn": "^6.0.0",
"request": "^2.88.0",
"update-notifier": "^4.0.0",
"validator": "^12.0.0"
},
"devDependencies": {
"coveralls": "^3.0.6",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.3.0",
"rewire": "^4.0.1",
"should": "^13.2.3",
"standard": "^14.2.0"
},
"engines": {
"node": ">=4.0.0"
}
}