-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 999 Bytes
/
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
{
"name": "cryptian",
"version": "0.0.8",
"description": "Crypto suite",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint . --ext ts"
},
"keywords": [
"crypto",
"mcrypt"
],
"author": "Tugrul Topuz <[email protected]>",
"bugs": {
"url": "https://github.com/tugrul/cryptian/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tugrul/cryptian.git"
},
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.17.0"
},
"devDependencies": {
"@types/bindings": "^1.5.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@types/stream-buffers": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"stream-buffers": "^3.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"gypfile": true
}