-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "natocrypt",
"version": "0.0.0-development",
"description": "A simple encryption library for NodeJS.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"commit": "git-cz",
"semantic-release": "semantic-release --branches main",
"arc": "git status && git add . && npm run commit && git push",
"build": "tsc",
"dev": "nodemon --exec ts-node index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/kemaldemirgil/natocrypt.git"
},
"keywords": [
"natocrypt",
"password",
"auth",
"authentication",
"encryption",
"crypt",
"crypto",
"morse"
],
"author": "gam3fac3",
"license": "MIT",
"bugs": {
"url": "https://github.com/kemaldemirgil/natocrypt/issues"
},
"homepage": "https://github.com/kemaldemirgil/natocrypt#readme",
"devDependencies": {
"@types/node": "^16.11.1",
"cz-conventional-changelog": "^3.3.0",
"jest": "^27.2.5",
"nodemon": "^2.0.13",
"semantic-release": "^18.0.0",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}