-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "@runninghill/simple-encryption",
"version": "1.1.0",
"description": "A package that allows you to simply encrypt and decrypt data.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Runninghill/simple-encryption.git"
},
"author": "Gavin de Bruyn",
"license": "MIT",
"bugs": {
"url": "https://github.com/Runninghill/simple-encryption/issues"
},
"homepage": "https://github.com/Runninghill/simple-encryption#readme",
"dependencies": {
"@types/bcryptjs": "2.4.2",
"@types/crypto-js": "4.0.2",
"bcryptjs": "2.4.3",
"crypto-js": "4.1.1"
},
"devDependencies": {
"@jest/globals": "27.4.2",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"eslint": "8.4.1",
"jest": "27.4.3",
"ts-jest": "27.0.7",
"typescript": "4.5.3"
}
}