-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
69 lines (69 loc) · 1.75 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
60
61
62
63
64
65
66
67
68
69
{
"name": "random-useragent",
"version": "0.5.0",
"description": "Get a random useragent (with an optional filter)",
"main": "index.js",
"scripts": {
"changelog": "github_changelog_generator --user skratchdot --project random-useragent && npm run format",
"clean": "rimraf .nyc_output/ coverage/",
"cover": "nyc npm test",
"coveralls": "cat coverage/lcov.info | coveralls --verbose",
"data": "./scripts/create-data.js && npm run format",
"format": "prettier --check --write .",
"lint": "eslint *.js scripts/*.js",
"prepublish": "npm-run-all format lint test",
"test": "mocha test.js",
"watch": "npm-run-all clean --parallel watch:test watch:lint",
"watch:lint": "sane 'npm run lint' .",
"watch:test": "npm run test -- -w"
},
"author": "skratchdot",
"license": "MIT",
"bugs": {
"url": "https://github.com/skratchdot/random-useragent/issues"
},
"homepage": "https://github.com/skratchdot/random-useragent",
"repository": {
"type": "git",
"url": "git://github.com/skratchdot/random-useragent.git"
},
"dependencies": {
"random-seed": "^0.3.0"
},
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.25.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"sane": "^5.0.1",
"ua-parser-js": "^1.0.2",
"xml2js": "^0.4.23"
},
"tonicExampleFilename": ".tonic.example.js",
"nyc": {
"all": true,
"include": [
"index.js"
],
"reporter": [
"text",
"html",
"lcovonly"
]
},
"keywords": [
"random",
"useragent",
"user-agent",
"user",
"agent",
"data",
"web",
"developer"
]
}