-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "@pelevesque/are-substrings-over-maximum-density",
"version": "0.0.5",
"description": "Checks if substrings are over maximum densities in a string.",
"main": "index.js",
"engines": {
"node": ">=9.0.0"
},
"scripts": {
"test": "standard && mocha --reporter spec && node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"standard": "standard",
"unit": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pelevesque/are-substrings-over-maximum-density.git"
},
"keywords": [
"str",
"substring",
"maximum",
"density"
],
"author": "Pierre-Emmanuel Lévesque <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelevesque/are-substrings-over-maximum-density/issues"
},
"homepage": "https://github.com/pelevesque/are-substrings-over-maximum-density#readme",
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"istanbul": "^0.4.5",
"mocha": "^7.0.1",
"standard": "^14.3.1"
},
"dependencies": {
"substr-occurrence": "^1.1.0"
}
}