This repository was archived by the owner on Aug 1, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.01 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "wikiscores",
"version": "1.1.5",
"description": "Command-line tool that extracts structured data about all of the US Supreme Court Cases since 2000",
"author": "Dave Sag <davesag@gmail.com>",
"type": "commonjs",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/davesag"
},
"main": "src/index.js",
"bin": "bin/wikiscores",
"engines": {
"node": ">= 10.16.1"
},
"preferGlobal": true,
"files": [
"bin",
"src",
"CONTRIBUTING.md"
],
"directories": {
"bin": "bin",
"lib": "src",
"test": "test"
},
"scripts": {
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "eslint .",
"prettier": "prettier --write '**/*.{js,json,md}'",
"start": "node src/index.js",
"test": "npm run test:unit",
"test:unit": "NODE_ENV=test NODE_PATH=. mocha ./test/unit/ --require ./test/unitTestHelper.js --recursive",
"test:unit:cov": "NODE_ENV=test NODE_PATH=. nyc mocha ./test/unit/ --require ./test/unitTestHelper.js --recursive",
"snyk-protect": "snyk protect"
},
"keywords": [
"wikipedia"
],
"contributors": [
"Matthew Sag <matthewsag@gmail.com>"
],
"repository": "https://github.com/davesag/wikiscores.git",
"bugs": {
"url": "https://github.com/davesag/wikiscores/issues"
},
"homepage": "https://github.com/davesag/wikiscores#readme",
"dependencies": {
"camelcase": "^6.0.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^7.0.0",
"csv-writer": "^1.6.0",
"decamelize": "^5.0.0",
"mkdirp": "^1.0.4",
"nedb-promises": "^4.1.0",
"pluralize": "^8.0.0",
"query-string": "^7.0.0",
"superagent-retry-delay": "^2.6.2",
"superagent-throttle": "^1.0.1"
},
"devDependencies": {
"ajv": "^8.3.0",
"chai": "^4.2.0",
"chai-almost": "^1.0.1",
"chai-as-promised": "^7.1.1",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.0",
"husky": "^4.3.0",
"lint-staged": "^11.0.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"proxyquire": "^2.1.3",
"sinon": "^10.0.0",
"sinon-chai": "^3.5.0",
"snyk": "^1.410.3",
"superagent": "^6.1.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"arrowParens": "avoid",
"trailingComma": "none"
},
"lint-staged": {
"**/*.{js,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/**/*.js"
],
"exclude": [
"src/index.js",
"src/run.js"
],
"reporter": [
"lcov",
"text"
],
"all": true,
"cache": true
},
"snyk": true
}