-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 KB
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
{
"name": "fernet-nodejs",
"repository": {
"type": "git",
"url": "https://github.com/zoran-php/fernet-nodejs.git"
},
"version": "1.0.6",
"description": "Fernet algorithm implementation written in Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "npx tsc",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint -c .eslintrc.json"
},
"keywords": [
"fernet",
"cryptography",
"crypto",
"cipher",
"symmetric",
"encryption",
"decryption",
"key"
],
"author": "Zoran Davidovic",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.4.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"babel-jest": "^29.4.3",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}