-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 1.79 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "pwned-api",
"version": "0.0.6",
"description": "Unofficial javascript client for HaveIBeenPwned API",
"homepage": "https://github.com/b4dnewz/node-pwned",
"author": {
"name": "b4dnewz",
"email": "[email protected]",
"url": "https://b4dnewz.github.io/"
},
"license": "MIT",
"files": [
"lib",
"dist"
],
"main": "dist/pwned.node.js",
"bin": {
"pwned": "./lib/cli.js"
},
"keywords": [
"haveibeenpwned",
"javascript-client"
],
"scripts": {
"pretest": "eslint . --fix",
"precommit": "lint-staged",
"test": "jest --coverage",
"prebuild": "npm run test",
"build": "webpack",
"dev": "webpack -w"
},
"dependencies": {
"commander": "^2.15.1",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.0",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.25.1",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"lint-staged": "^8.1.0",
"nock": "^10.0.6",
"prettier": "^1.15.3",
"webpack": "^3.2",
"webpack-cli": "^3.2.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"repository": "b4dnewz/node-pwned",
"jest": {
"testEnvironment": "node"
}
}