-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@nexckycort/rijndael-nodejs",
"version": "2.0.1",
"description": "implementation of the rijndael encryption algorithm.",
"main": "dist/rijndael.js",
"engines": {
"node": ">=14.17.3",
"npm": ">=6.14.13"
},
"private": false,
"scripts": {
"prepublish": "npm run build",
"build": "rimraf dist && tsc",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose",
"lint": "eslint . --ext .ts --fix",
"format": "prettier --write src",
"make-badges": "istanbul-badges-readme",
"prepare": "husky install"
},
"keywords": [
"rijndael",
"typescript",
"javascript",
"node",
"package"
],
"author": "Nestor Cortina <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nexckycort/rijndael-nodejs"
},
"bugs": {
"url": "https://github.com/nexckycort/rijndael-nodejs/issues"
},
"homepage": "https://github.com/nexckycort/rijndael-nodejs#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"husky": "^7.0.0",
"istanbul-badges-readme": "^1.6.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4"
},
"files": [
"dist",
"package.json",
"README.md"
]
}