-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "@philnash/pwned",
"version": "0.0.1",
"description": "An easy, promise based, way to test passwords securely against the Pwned Passwords API v2 in Node.js.",
"main": "lib/pwned.js",
"types": "lib/pwned.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"keywords": [],
"files": [
"lib/**/*"
],
"author": "Phil Nash <[email protected]> (http://philna.sh)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/philnash/pwned.js.git"
},
"homepage": "https://github.com/philnash/pwned.js",
"bugs": {
"url": "https://github.com/philnash/pwned.js/issues"
},
"devDependencies": {
"@babel/types": "^7.4.4",
"@types/fetch-mock": "^7.3.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"fetch-mock": "^7.3.3",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"webcrypto": "^0.1.1"
}
}