-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "generate-password",
"version": "1.7.1",
"description": "Easy library for generating unique passwords.",
"main": "main.js",
"exports": {
"types": "./src/generate.d.ts",
"default": "./main.js"
},
"types": "src/generate.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha",
"coverage": "sh ./test/coverage.sh",
"lint": "./node_modules/.bin/eslint src test main.js example.js"
},
"repository": {
"type": "git",
"url": "https://github.com/brendanashworth/generate-password"
},
"keywords": [
"generate",
"password",
"generator",
"unique"
],
"author": "Brendan Ashworth",
"license": "MIT",
"bugs": {
"url": "https://github.com/brendanashworth/generate-password/issues"
},
"homepage": "https://github.com/brendanashworth/generate-password",
"devDependencies": {
"chai": "^1.10.0",
"codecov": "^3.8.3",
"eslint": "^6.5.1",
"jscover": "^0.1.1",
"mocha": "^7.0.0",
"mocha-lcov-reporter": "^1.2.0",
"underscore": "^1.7.0"
}
}