-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "scryptwrap",
"private": false,
"description": "A wrapper for the crypto.scrypt()",
"version": "2.0.0",
"main": "build/index.js",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"homepage": "https://github.com/julyskies/scryptwrap",
"bugs": {
"url": "https://github.com/julyskies/scryptwrap/issues"
},
"license": "MIT",
"engines": {
"node": ">=10.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julyskies/scryptwrap"
},
"keywords": [
"Crypto",
"Node",
"Scrypt"
],
"scripts": {
"build": "tsc",
"lint": "eslint",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "jest ./build/tests"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7",
"typescript": "^4.5.4"
}
}