-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
49 lines (49 loc) · 1.17 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
49
{
"name": "typeorm-encrypted",
"version": "0.8.0",
"description": "encrypted typeorm fields",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"chai": "^4.1.2",
"mocha": "^10.2.0",
"prettier": "^2.0.5",
"sqlite3": "^5.0.10",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typeorm": "^0.3.7",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typeorm": "^0.3.7"
},
"scripts": {
"prepare": "npm run build",
"clean": "rm -rf lib",
"build": "tsc",
"test": "mocha --reporter spec --require ts-node/register 'test/**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/generalpiston/typeorm-encrypted.git"
},
"keywords": [
"typescript",
"typeorm",
"encrypted",
"encryption",
"encrypt"
],
"author": {
"name": "Abraham Elmahrek",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/generalpiston/typeorm-encrypted/issues"
},
"homepage": "https://github.com/generalpiston/typeorm-encrypted#readme"
}