-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "n-krypta",
"version": "1.0.6",
"description": "A simple encrypting and decrypting package",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc",
"start:dev": "nodemon",
"test:dev": "jest --verbose --watchAll",
"test": "jest",
"lint": "eslint --ext .ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodePapi/n-krypta.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jest": {
"preset": "ts-jest",
"clearMocks": true,
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"keywords": [
"encrypt",
"decrypt",
"n-krypta",
"hash",
"hashing",
"encryption",
"decryption",
"compare",
"compare-hash"
],
"author": "Samuel Egbajie",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodePapi/n-krypta/issues"
},
"homepage": "https://github.com/CodePapi/n-krypta#readme",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.16",
"@types/supertest": "^2.0.12",
"eslint": "^8.23.0",
"jest": "^29.0.2",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
}
}