-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "user-agent-string",
"engines": {
"node": ">=6.0.0"
},
"version": "1.2.0",
"description": "Easy way to get User Agent Strings in command line interface.",
"preferGlobal": true,
"main": "index.js",
"bin": {
"ua-string": "./bin/ua-string.js"
},
"scripts": {
"test": "standard && nyc --reporter=lcov --reporter=text-lcov ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com:WindomZ/user-agent-string.git"
},
"keywords": [
"user-agent",
"cli",
"ua"
],
"author": "WindomZ <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WindomZ/user-agent-string/issues"
},
"homepage": "https://github.com/WindomZ/user-agent-string#readme",
"dependencies": {
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.3",
"co": "^4.6.0",
"colors": "^1.3.3",
"commander": "^4.0.0",
"inquirer": "^7.0.0"
},
"devDependencies": {
"ava": "^2.0.0",
"coveralls": "^3.0.3",
"nyc": "^15.0.0",
"standard": "^14.2.0"
}
}