-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.4 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
{
"name": "node-ikev2",
"title": "Node-IKEV2",
"version": "0.2.1",
"description": "IKEv2 parser and serializer for Node.js",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"module": "./lib/src/index.js",
"files": [
"lib/src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint 'src/**/*.ts' --fix",
"test": "jest",
"build-and-test": "npm run build && npm run test",
"prepublishOnly": "npm run build-and-test"
},
"repository": {
"type": "git",
"url": "https://github.com/hyavari/node-ikev2.git"
},
"bugs": {
"url": "https://github.com/hyavari/node-ikev2/issues"
},
"homepage": "https://github.com/hyavari/node-ikev2#readme",
"keywords": [
"ikev2",
"ipsec",
"vpn",
"security",
"cryptography",
"parser"
],
"author": "Hossein Yavari",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.7.9",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.10.0"
}
}